* bits/resource.h (RLIMIT_SBSIZE, RLIMIT_AS, RLIMIT_VMEM): Define.
authorRoland McGrath <roland@gnu.org>
Sun, 5 Mar 2006 22:48:23 +0000 (22:48 +0000)
committerRoland McGrath <roland@gnu.org>
Sun, 5 Mar 2006 22:48:23 +0000 (22:48 +0000)
ChangeLog
bits/resource.h

index c3a4d0aa3e796294b5212104a164b0427372799e..fd41a9f00c496c990337afe729084b91436b415e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2006-03-05  Roland McGrath  <roland@frob.com>
 
+       * bits/resource.h (RLIMIT_SBSIZE, RLIMIT_AS, RLIMIT_VMEM): Define.
+
        * sysdeps/mach/hurd/fdopendir.c (__fdopendir): Use O_DIRECTORY
        to force directory check.
        * sysdeps/mach/hurd/opendir.c (__opendir): Likewise.
index 05b28dfccd8662e022bca4bb6317b6290292a479..8057f5cc657005bdc89fae39fd7d5008c6553a43 100644 (file)
@@ -1,5 +1,5 @@
 /* Bit values & structures for resource limits.  4.4 BSD/generic GNU version.
-   Copyright (C) 1994, 1996, 1997, 1998 Free Software Foundation, Inc.
+   Copyright (C) 1994,1996,1997,1998,2006 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -63,6 +63,14 @@ enum __rlimit_resource
     RLIMIT_NOFILE = RLIMIT_OFILE, /* Another name for the same thing.  */
 #define        RLIMIT_OFILE    RLIMIT_OFILE
 #define        RLIMIT_NOFILE   RLIMIT_NOFILE
+    /* Maximum size of all socket buffers.  */
+    RLIMIT_SBSIZE,
+#define RLIMIT_SBSIZE  RLIMIT_SBSIZE
+    /* Maximum size in bytes of the process address space.  */
+    RLIMIT_AS,
+    RLIMIT_VMEM = RLIMIT_AS,   /* Another name for the same thing.  */
+#define RLIMIT_AS      RLIMIT_AS
+#define RLIMIT_VMEM    RLIMIT_AS
 
     RLIMIT_NLIMITS,            /* Number of limit flavors.  */
     RLIM_NLIMITS = RLIMIT_NLIMITS /* Traditional name for same.  */