]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 18 Feb 2003 02:26:32 +0000 (02:26 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 18 Feb 2003 02:26:32 +0000 (02:26 +0000)
2003-02-17  Ulrich Drepper  <drepper@redhat.com>

* sysdeps/unix/sysv/linux/bits/local_lim.h: Define TTY_NAME_MAX
and LOGIN_NAME_MAX.

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

index 5a187ab57ee28efd106e614dd3481f823714292c..cc2f38d81c5f9e167caa6b8fadd29651e05bf3e7 100644 (file)
@@ -1,3 +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.
+
 2003-02-17  Kevin B. Hendricks  <kevin.hendricks@sympatico.ca>
            Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
 
index ad432170793370af0be0bef83f83de4c00ee322c..4844f01950fd28934d6cd31c436200d80493d85f 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