about summary refs log tree commit diff
path: root/linuxthreads/sysdeps
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-02-18 02:26:32 +0000
committerUlrich Drepper <drepper@redhat.com>2003-02-18 02:26:32 +0000
commita5e34e047dcc6709d994949389eb6e91709b3266 (patch)
tree8caee406198959d528b621470f5b381cf1c3b040 /linuxthreads/sysdeps
parentecfda9bd440014182b4de9a157a27bf7550c6a2c (diff)
downloadglibc-a5e34e047dcc6709d994949389eb6e91709b3266.tar.gz
glibc-a5e34e047dcc6709d994949389eb6e91709b3266.tar.xz
glibc-a5e34e047dcc6709d994949389eb6e91709b3266.zip
Update.
2003-02-17  Ulrich Drepper  <drepper@redhat.com>

	* sysdeps/unix/sysv/linux/bits/local_lim.h: Define TTY_NAME_MAX
	and LOGIN_NAME_MAX.
Diffstat (limited to 'linuxthreads/sysdeps')
-rw-r--r--linuxthreads/sysdeps/unix/sysv/linux/bits/local_lim.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/linuxthreads/sysdeps/unix/sysv/linux/bits/local_lim.h b/linuxthreads/sysdeps/unix/sysv/linux/bits/local_lim.h
index ad43217079..4844f01950 100644
--- a/linuxthreads/sysdeps/unix/sysv/linux/bits/local_lim.h
+++ b/linuxthreads/sysdeps/unix/sysv/linux/bits/local_lim.h
@@ -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