]> sourceware.org Git - glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Wed, 25 Feb 2004 23:28:54 +0000 (23:28 +0000)
committerUlrich Drepper <drepper@redhat.com>
Wed, 25 Feb 2004 23:28:54 +0000 (23:28 +0000)
2004-02-25  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Handle
_SC_NGROUPS_MAX.

ChangeLog
sysdeps/unix/sysv/linux/sysconf.c

index b2ceca72c385a9b46d0875a7ecfda937b869c0da..bd2edacdcd61f046bf1fea346dfe9a7f8891174b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2004-02-25  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/unix/sysv/linux/sysconf.c (__sysconf): Handle
+       _SC_NGROUPS_MAX.
+
 2004-02-23  Jakub Jelinek  <jakub@redhat.com>
 
        * wcsmbs/mbrtowc.c (__mbrtowc): Cap s + n at the end of address space.
index e07c502cc3622f9bf3ba7d2da611c2c93f603587..842c8794d07ecc250a93a2e3a0317a3d8f225268 100644 (file)
@@ -1,5 +1,5 @@
 /* Get file-specific information about a file.  Linux version.
-   Copyright (C) 2003 Free Software Foundation, Inc.
+   Copyright (C) 2003, 2004 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
@@ -17,6 +17,7 @@
    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
    02111-1307 USA.  */
 
+#include <fcntl.h>
 #include <sysdep.h>
 #include <time.h>
 #include <unistd.h>
@@ -46,7 +47,40 @@ __sysconf (int name)
       }
 #endif
 
+    case _SC_NGROUPS_MAX:
+      {
+       /* Try to read the information from the /proc/sys/kernel/ngroups_max
+          file.  */
+       int fd = __open ("/proc/sys/kernel/ngroups_max", O_RDONLY);
+       if (fd != -1)
+         {
+           /* This is more than enough, the file contains a single
+              integer.  */
+           char buf[32];
+           long int res = -1l;
+
+           ssize_t n = __read (fd, buf, sizeof (buf) - 1);
+           if (n > 0)
+             {
+               /* Terminate the string.  */
+               buf[n] = '\0';
+
+               char *endp;
+               res = strtol (buf, &endp, 10);
+               if (endp == buf || (*endp != '\0' && *endp != '\n'))
+                 res = -1l;
+             }
+
+           __close (fd);
+
+           if (res != -1)
+             return res;
+         }
+      }
+      break;
+
     default:
-      return posix_sysconf (name);
+      break;
     }
+  return posix_sysconf (name);
 }
This page took 0.052441 seconds and 5 git commands to generate.