mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
Update.
2001-01-26 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/sys/param.h (MAXSYMLINKS): Bump to 20. * conform/conformtest.pl (@headers): Add stdint.h. * conform/data/stdint.h-data: New file.
This commit is contained in:
parent
ad4f2ebf64
commit
020275b5b8
@ -1,5 +1,12 @@
|
||||
2001-01-26 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/unix/sysv/linux/sys/param.h (MAXSYMLINKS): Bump to 20.
|
||||
|
||||
2001-01-25 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* conform/conformtest.pl (@headers): Add stdint.h.
|
||||
* conform/data/stdint.h-data: New file.
|
||||
|
||||
* conform/conformtest.pl: Recognize options --headers and
|
||||
--dialect. Add dialect-specific CFLAGS.
|
||||
|
||||
|
@ -17,8 +17,8 @@ if (@headers == ()) {
|
||||
"sys/time.h", "sys/statvfs.h", "sys/stat.h", "sys/socket.h",
|
||||
"sys/shm.h", "sys/sem.h", "sys/resource.h", "sys/msg.h",
|
||||
"sys/mman.h", "sys/ipc.h", "syslog.h", "stropts.h", "strings.h",
|
||||
"string.h", "stdlib.h", "stdio.h", "stddef.h", "stdarg.h",
|
||||
"spawn.h", "signal.h", "setjmp.h", "semaphore.h",
|
||||
"string.h", "stdlib.h", "stdio.h", "stdint.h", "stddef.h",
|
||||
"stdarg.h", "spawn.h", "signal.h", "setjmp.h", "semaphore.h",
|
||||
"search.h", "sched.h", "regex.h", "pwd.h", "pthread.h",
|
||||
"poll.h", "nl_types.h", "netinet/tcp.h", "netinet/in.h",
|
||||
"net/if.h", "netdb.h", "ndbm.h", "mqueue.h", "monetary.h",
|
||||
@ -181,6 +181,7 @@ sub runtest
|
||||
}
|
||||
} else {
|
||||
printf (" FAIL\n");
|
||||
++$errors;
|
||||
$printlog = 1;
|
||||
unlink "$fnamebase.out";
|
||||
rename "$fnamebase.out2", "$fnamebase.out";
|
||||
|
109
conform/data/stdint.h-data
Normal file
109
conform/data/stdint.h-data
Normal file
@ -0,0 +1,109 @@
|
||||
type int8_t
|
||||
type int16_t
|
||||
type int32_t
|
||||
type int64_t
|
||||
type uint8_t
|
||||
type uint16_t
|
||||
type uint32_t
|
||||
type uint64_t
|
||||
|
||||
type int_least8_t
|
||||
type int_least16_t
|
||||
type int_least32_t
|
||||
type int_least64_t
|
||||
type uint_least8_t
|
||||
type uint_least16_t
|
||||
type uint_least32_t
|
||||
type uint_least64_t
|
||||
|
||||
type int_fast8_t
|
||||
type int_fast16_t
|
||||
type int_fast32_t
|
||||
type int_fast64_t
|
||||
type uint_fast8_t
|
||||
type uint_fast16_t
|
||||
type uint_fast32_t
|
||||
type uint_fast64_t
|
||||
|
||||
type intptr_t
|
||||
type uintptr_t
|
||||
|
||||
type intmax_t
|
||||
type uintmax_t
|
||||
|
||||
constant INT8_MIN == -128
|
||||
constant INT8_MAX == 127
|
||||
constant INT16_MIN == -32768
|
||||
constant INT16_MAX == 32767
|
||||
constant INT32_MIN == -2147483647-1
|
||||
constant INT32_MAX == 2147483647
|
||||
constant INT64_MIN == -9223372036854775807LL-1
|
||||
constant INT64_MAX == 9223372036854775807LL
|
||||
|
||||
constant UINT8_MAX == 255
|
||||
constant UINT16_MAX == 65535
|
||||
constant UINT32_MAX == 4294967295U
|
||||
constant UINT64_MAX == 18446744073709551615ULL
|
||||
|
||||
constant INT_LEAST8_MIN <= -128
|
||||
constant INT_LEAST8_MAX >= 127
|
||||
constant INT_LEAST16_MIN <= -32768
|
||||
constant INT_LEAST16_MAX >= 32767
|
||||
constant INT_LEAST32_MIN <= -2147483647-1
|
||||
constant INT_LEAST32_MAX >= 2147483647
|
||||
constant INT_LEAST64_MIN <= -9223372036854775807LL-1
|
||||
constant INT_LEAST64_MAX >= 9223372036854775807LL
|
||||
|
||||
constant UINT_LEAST8_MAX >= 255
|
||||
constant UINT_LEAST16_MAX >= 65535
|
||||
constant UINT_LEAST32_MAX >= 4294967295U
|
||||
constant UINT_LEAST64_MAX >= 18446744073709551615ULL
|
||||
|
||||
constant INT_FAST8_MIN <= -128
|
||||
constant INT_FAST8_MAX >= 127
|
||||
constant INT_FAST16_MIN <= -32768
|
||||
constant INT_FAST16_MAX >= 32767
|
||||
constant INT_FAST32_MIN <= -2147483647-1
|
||||
constant INT_FAST32_MAX >= 2147483647
|
||||
constant INT_FAST64_MIN <= -9223372036854775807LL-1
|
||||
constant INT_FAST64_MAX >= 9223372036854775807LL
|
||||
|
||||
constant UINT_FAST8_MAX >= 255
|
||||
constant UINT_FAST16_MAX >= 65535
|
||||
constant UINT_FAST32_MAX >= 4294967295U
|
||||
constant UINT_FAST64_MAX >= 18446744073709551615ULL
|
||||
|
||||
constant INTPTR_MIN <= -32768
|
||||
constant INTPTR_MAX >= 32767
|
||||
|
||||
constant UINTPTR_MAX >= 65535
|
||||
|
||||
constant INTMAX_MIN <= -9223372036854775807LL-1
|
||||
constant INTMAX_MAX >= 9223372036854775807LL
|
||||
|
||||
constant UINTMAX_MAX >= 18446744073709551615ULL
|
||||
|
||||
constant PTRDIFF_MIN <= -65535
|
||||
constant PTRDIFF_MAX >= 65535
|
||||
|
||||
constant SIG_ATOMIC_MIN <= -127
|
||||
constant SIG_ATOMIC_MAX >= 127
|
||||
|
||||
constant SIZE_MAX >= 65535
|
||||
|
||||
constant WCHAR_MIN <= -127
|
||||
constant WCHAR_MAX >= 127
|
||||
|
||||
constant WINT_MIN <= -127
|
||||
constant WINT_MAX >= 127
|
||||
|
||||
allow INT8_C
|
||||
allow INT16_C
|
||||
allow INT32_C
|
||||
allow INT64_C
|
||||
allow UINT8_C
|
||||
allow UINT16_C
|
||||
allow UINT32_C
|
||||
allow UINT64_C
|
||||
allow INTMAX_C
|
||||
allow UINTMAX_C
|
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1995, 1996, 1997, 2000 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1995, 1996, 1997, 2000, 2001 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
|
||||
@ -29,7 +29,7 @@
|
||||
#ifndef NGROUPS
|
||||
# define NGROUPS NGROUPS_MAX
|
||||
#endif
|
||||
#define MAXSYMLINKS 5
|
||||
#define MAXSYMLINKS 20
|
||||
#define CANBSIZ MAX_CANON
|
||||
#define NCARGS ARG_MAX
|
||||
#define MAXPATHLEN PATH_MAX
|
||||
|
Loading…
Reference in New Issue
Block a user