]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Mon, 17 Feb 2003 22:57:19 +0000 (22:57 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 17 Feb 2003 22:57:19 +0000 (22:57 +0000)
* sysdeps/unix/sysv/linux/bits/local_lim.h: Define TTY_NAME_MAX
and LOGIN_NAME_MAX.

nptl/ChangeLog
nptl/sysdeps/unix/sysv/linux/bits/local_lim.h
sysdeps/unix/sysv/linux/bits/local_lim.h

index 96f6f6a3d9355b24705f6af3f7df387d467c145c..e5bc228908340b06683cf89065b4f5271d3b7e17 100644 (file)
@@ -1,5 +1,8 @@
 2003-02-17  Ulrich Drepper  <drepper@redhat.com>
 
+       * sysdeps/unix/sysv/linux/bits/local_lim.h: Define TTY_NAME_MAX
+       and LOGIN_NAME_MAX.
+
        * tst-cancel1.c (tf): Block all signals.
 
        * Makefile (tests): Add tst-basic6.
index 9415122b9e13fdfe0dff3c6622c4820fc331664f..90564cbfe23ea9b01f0d52a399bd087d3fe60849 100644 (file)
@@ -1,5 +1,5 @@
 /* Minimum guaranteed maximum values for system limits.  Linux version.
-   Copyright (C) 1993,94,95,96,97,98,2000,2002 Free Software Foundation, Inc.
+   Copyright (C) 1993-1998, 2000, 2002, 2003 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
@@ -78,3 +78,9 @@
 
 /* Maximum number of timer expiration overruns.  */
 #define DELAYTIMER_MAX 2147483647
+
+/* Maximum tty name length.  */
+#define TTY_NAME_MAX           32
+
+/* Maximum login name length.  This is arbitrary.  */
+#define LOGIN_NAME_MAX         256
index 8bfd8e58c818c1da1c08be4899c95cd3848e501c..4d6064b64fb6a56967ee8416bc57553b11851f29 100644 (file)
@@ -1,5 +1,5 @@
 /* Minimum guaranteed maximum values for system limits.  Linux version.
-   Copyright (C) 1993, 94, 95, 96, 97, 98, 2000 Free Software Foundation, Inc.
+   Copyright (C) 1993-1998, 2000, 2003 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
@@ -54,3 +54,9 @@
 /* Maximum amount by which a process can descrease its asynchronous I/O
    priority level.  */
 #define AIO_PRIO_DELTA_MAX     20
+
+/* Maximum tty name length.  */
+#define TTY_NAME_MAX           32
+
+/* Maximum login name length.  This is arbitrary.  */
+#define LOGIN_NAME_MAX         256