Note that id_t can also hold a gid_t. Realign comments.

This commit is contained in:
Mike Barcroft 2002-10-22 13:26:35 +00:00
parent 29b4d52653
commit 7a43ac45b2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=105690

View File

@ -35,21 +35,21 @@
/*
* Standard type definitions.
*/
typedef __int32_t __clockid_t; /* clock_gettime()... */
typedef __uint32_t __fflags_t; /* file flags */
typedef __int32_t __clockid_t; /* clock_gettime()... */
typedef __uint32_t __fflags_t; /* file flags */
typedef __uint64_t __fsblkcnt_t;
typedef __uint64_t __fsfilcnt_t;
typedef __uint32_t __gid_t;
typedef __int64_t __id_t; /* can hold a uid_t or pid_t */
typedef long __key_t; /* IPC key (for Sys V IPC) */
typedef __uint16_t __mode_t; /* permissions */
typedef __int64_t __id_t; /* can hold a gid_t, pid_t, or uid_t */
typedef long __key_t; /* IPC key (for Sys V IPC) */
typedef __uint16_t __mode_t; /* permissions */
typedef int __nl_item;
typedef __int64_t __off_t; /* file offset */
typedef __int32_t __pid_t; /* process [group] */
typedef __int64_t __off_t; /* file offset */
typedef __int32_t __pid_t; /* process [group] */
typedef __int64_t __rlim_t; /* resource limit (XXX not unsigned) */
typedef __uint8_t __sa_family_t;
typedef __uint32_t __socklen_t;
typedef __int32_t __timer_t; /* timer_gettime()... */
typedef __int32_t __timer_t; /* timer_gettime()... */
typedef __uint32_t __uid_t;
/*