diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-02-17 22:57:19 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-02-17 22:57:19 +0000 |
commit | 7d78ab990fc8a6da5ffdd90fe146d30e42210c8b (patch) | |
tree | cdaabd56dae60fd9c49a6788b51f28c40bd2a0c5 /nptl/sysdeps | |
parent | b2740a3b0a55fa4eead5c952dabf435794d0dd7f (diff) | |
download | glibc-7d78ab990fc8a6da5ffdd90fe146d30e42210c8b.tar glibc-7d78ab990fc8a6da5ffdd90fe146d30e42210c8b.tar.gz glibc-7d78ab990fc8a6da5ffdd90fe146d30e42210c8b.tar.bz2 glibc-7d78ab990fc8a6da5ffdd90fe146d30e42210c8b.zip |
Update.
* sysdeps/unix/sysv/linux/bits/local_lim.h: Define TTY_NAME_MAX
and LOGIN_NAME_MAX.
Diffstat (limited to 'nptl/sysdeps')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/bits/local_lim.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/bits/local_lim.h b/nptl/sysdeps/unix/sysv/linux/bits/local_lim.h index 9415122b9e..90564cbfe2 100644 --- a/nptl/sysdeps/unix/sysv/linux/bits/local_lim.h +++ b/nptl/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 |