Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2014-11-20 17:03:17 +0300
committerCorinna Vinschen <corinna@vinschen.de>2014-11-20 17:03:17 +0300
commit308186a1340cf76436301ee183d8593432f76161 (patch)
treec020d9f96487ef0ebd85d9069daada3f377c53c3 /newlib
parentf70b9c32d5d5b09479b4087bb64f4b95c9821704 (diff)
* libc/sys/rtems/sys/syslimits.h (NGROUPS_MAX): Adjust value so
that NGROUPS is even.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/ChangeLog5
-rw-r--r--newlib/libc/sys/rtems/sys/syslimits.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index a79fd4783..da7671cd8 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,8 @@
+2014-11-20 Sebastian Huber <sebastian.huber@embedded-brains.de>
+
+ * libc/sys/rtems/sys/syslimits.h (NGROUPS_MAX): Adjust value so
+ that NGROUPS is even.
+
2014-11-12 Jon Beniston <jon@beniston.com>
* libc/stdlib/strtod.c (sulp): Cast to int32_t to avoid overflow.
diff --git a/newlib/libc/sys/rtems/sys/syslimits.h b/newlib/libc/sys/rtems/sys/syslimits.h
index 74c4dd273..2295afe34 100644
--- a/newlib/libc/sys/rtems/sys/syslimits.h
+++ b/newlib/libc/sys/rtems/sys/syslimits.h
@@ -45,7 +45,7 @@
#define MAX_CANON 255 /* max bytes in term canon input line */
#define MAX_INPUT 255 /* max bytes in terminal input */
#define NAME_MAX 255 /* max bytes in a file name */
-#define NGROUPS_MAX 16 /* max supplemental group id's */
+#define NGROUPS_MAX 15 /* max supplemental group id's */
#ifndef OPEN_MAX
#define OPEN_MAX 64 /* max open files per process */
#endif