aboutsummaryrefslogtreecommitdiff
path: root/sys/arm/include/types.h
Commit message (Collapse)AuthorAgeFilesLines
* o Merge <machine/ansi.h> and <machine/types.h> into a new headerMike Barcroft2002-08-211-59/+0
| | | | | | | | | | | | | | | | | | | | | | | | called <machine/_types.h>. o <machine/ansi.h> will continue to live so it can define MD clock macros, which are only MD because of gratuitous differences between architectures. o Change all headers to make use of this. This mainly involves changing: #ifdef _BSD_FOO_T_ typedef _BSD_FOO_T_ foo_t; #undef _BSD_FOO_T_ #endif to: #ifndef _FOO_T_DECLARED typedef __foo_t foo_t; #define _FOO_T_DECLARED #endif Concept by: bde Reviewed by: jake, obrien Notes: svn path=/head/; revision=102227
* Remove label_t and physadr, which seem to have never been used inMike Barcroft2002-07-101-10/+0
| | | | | | | | | FreeBSD. Submitted by: bde Notes: svn path=/head/; revision=99733
* Remove an unused type.Mike Barcroft2002-07-091-3/+0
| | | | Notes: svn path=/head/; revision=99630
* Make vm_pindex_t 64-bit on all platforms. This is necessary to avoidIan Dowse2002-06-231-1/+1
| | | | | | | | | overflows with the large file sizes that UFS2 permits. Reviewed by: dillon, alc, tegge Notes: svn path=/head/; revision=98710
* Remove __P.Alfred Perlstein2002-03-201-1/+1
| | | | Notes: svn path=/head/; revision=92812
* We need machine/types.h to build a cross GCC compiler.David E. O'Brien2001-12-091-0/+72
(copied from src/sys/i386/include/types.h rev 1.23, except for the label_t size, which is '10' everywhere BUT on i386) Notes: svn path=/head/; revision=87571