summaryrefslogtreecommitdiff
path: root/share/man/man5/types.5
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-12-11 22:55:23 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-12-11 22:55:23 +0000
commit59cbe93f72d84866d77fe36d4fd2311b152566d0 (patch)
tree0ce92e951fd051a424e5a48293c947d511d5a573 /share/man/man5/types.5
parentaaedf16ede11d91d3ce8d6652eec3503e993ab9a (diff)
POSIX says rlim_t should be unsigned so make it u_quad_t. Also add
POSIX-mandated RLIM_SAVED_MAX and RLIM_SAVED_CUR defines. On OpenBSD these are identical to RLIM_INFINITY as allowed by POSIX. OK deraadt@
Diffstat (limited to 'share/man/man5/types.5')
-rw-r--r--share/man/man5/types.54
1 files changed, 2 insertions, 2 deletions
diff --git a/share/man/man5/types.5 b/share/man/man5/types.5
index 0a2a8fa8064..fbab7bc4b77 100644
--- a/share/man/man5/types.5
+++ b/share/man/man5/types.5
@@ -1,4 +1,4 @@
-.\" $OpenBSD: types.5,v 1.8 2003/06/02 23:30:14 millert Exp $
+.\" $OpenBSD: types.5,v 1.9 2003/12/11 22:55:22 millert Exp $
.\" $NetBSD: types.5,v 1.4 1997/07/10 06:56:38 mikel Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
@@ -80,7 +80,7 @@ typedef u_int16_t mode_t; /* permissions */
typedef u_int16_t nlink_t; /* link count */
typedef quad_t off_t; /* file offset */
typedef int32_t pid_t; /* process id */
-typedef quad_t rlim_t; /* resource limit */
+typedef u_quad_t rlim_t; /* resource limit */
typedef int32_t segsz_t; /* segment size */
typedef int32_t swblk_t; /* swap offset */
typedef u_int32_t uid_t; /* user id */