diff options
author | 2003-12-11 23:02:30 +0000 | |
---|---|---|
committer | 2003-12-11 23:02:30 +0000 | |
commit | c1f74b45732c57baf2962e97f56eca235500643c (patch) | |
tree | c2e341794f12ee67b8f4f0219c6e91f4588af9ca /share/man/man5/types.5 | |
parent | POSIX says rlim_t should be unsigned so make it u_quad_t. Also add (diff) | |
download | wireguard-openbsd-c1f74b45732c57baf2962e97f56eca235500643c.tar.xz wireguard-openbsd-c1f74b45732c57baf2962e97f56eca235500643c.zip |
Add id_t type as per POSIX and use it for [gs]etpriority(2).
OK henning@ and deraadt@
Diffstat (limited to 'share/man/man5/types.5')
-rw-r--r-- | share/man/man5/types.5 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/share/man/man5/types.5 b/share/man/man5/types.5 index fbab7bc4b77..990a0b27e48 100644 --- a/share/man/man5/types.5 +++ b/share/man/man5/types.5 @@ -1,4 +1,4 @@ -.\" $OpenBSD: types.5,v 1.9 2003/12/11 22:55:22 millert Exp $ +.\" $OpenBSD: types.5,v 1.10 2003/12/11 23:02:30 millert Exp $ .\" $NetBSD: types.5,v 1.4 1997/07/10 06:56:38 mikel Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 @@ -74,6 +74,7 @@ typedef int32_t daddr_t; /* disk address */ typedef int32_t dev_t; /* device number */ typedef u_int32_t fixpt_t; /* fixed point number */ typedef u_int32_t gid_t; /* group id */ +typedef u_int32_t id_t; /* may contain pid, uid or gid */ typedef u_int32_t ino_t; /* inode number */ typedef long key_t; /* IPC key (for Sys V IPC) */ typedef u_int16_t mode_t; /* permissions */ |