diff options
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/ieee754/huge_val.h | 40 | ||||
-rw-r--r-- | sysdeps/libm-ieee754/s_cbrtl.c | 2 | ||||
-rw-r--r-- | sysdeps/posix/gai_strerror.c | 2 | ||||
-rw-r--r-- | sysdeps/unix/syscalls.list | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/accept.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/bind.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/connect.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/getpeername.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/getsockname.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/getsockopt.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/i386/socket.S | 34 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/listen.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/recv.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/recvfrom.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/recvmsg.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/send.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/sendmsg.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/sendto.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/setsockopt.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/shutdown.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/socketpair.S | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/timebits.h | 6 |
22 files changed, 63 insertions, 39 deletions
diff --git a/sysdeps/ieee754/huge_val.h b/sysdeps/ieee754/huge_val.h index 63a8aad9f5..4f8b0a9574 100644 --- a/sysdeps/ieee754/huge_val.h +++ b/sysdeps/ieee754/huge_val.h @@ -1,6 +1,6 @@ -/* `HUGE_VAL' constant for IEEE 754 machines (where it is infinity). +/* `HUGE_VAL' constants for IEEE 754 machines (where it is infinity). Used by <stdlib.h> and <math.h> functions for overflow. - Copyright (C) 1992, 1995, 1996 Free Software Foundation, Inc. + Copyright (C) 1992, 1995, 1996, 1997 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 @@ -44,43 +44,49 @@ static __huge_val_t __huge_val = { __HUGE_VAL_bytes }; #endif /* GCC. */ -/* GNU extensions: (float) HUGE_VALf and (long double) HUGE_VALl. */ +/* ISO C 9X extensions: (float) HUGE_VALF and (long double) HUGE_VALL. */ -#ifdef __USE_GNU +#ifdef __USE_ISOC9X #if __BYTE_ORDER == __BIG_ENDIAN -#define __HUGE_VALf_bytes { 0x7f, 0x80, 0, 0 } +#define __HUGE_VALF_bytes { 0x7f, 0x80, 0, 0 } #endif #if __BYTE_ORDER == __LITTLE_ENDIAN -#define __HUGE_VALf_bytes { 0, 0, 0x80, 0x7f } +#define __HUGE_VALF_bytes { 0, 0, 0x80, 0x7f } #endif #define __huge_valf_t union { unsigned char __c[4]; float __f; } #ifdef __GNUC__ -#define HUGE_VALf (__extension__ \ - ((__huge_valf_t) { __c: __HUGE_VALf_bytes }).__f) +#define HUGE_VALF (__extension__ \ + ((__huge_valf_t) { __c: __HUGE_VALF_bytes }).__f) #else /* Not GCC. */ -static __huge_valf_t __huge_valf = { __HUGE_VALf_bytes }; -#define HUGE_VALf (__huge_valf.__f) +static __huge_valf_t __huge_valf = { __HUGE_VALF_bytes }; +#define HUGE_VALF (__huge_valf.__f) #endif /* GCC. */ + #if __BYTE_ORDER == __BIG_ENDIAN -#define __HUGE_VALl_bytes { 0x7f, 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } +#define __HUGE_VALL_bytes { 0x7f, 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 } #endif #if __BYTE_ORDER == __LITTLE_ENDIAN -#define __HUGE_VALl_bytes { 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0x7f, 0, 0 } +#define __HUGE_VALL_bytes { 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0x7f, 0, 0 } #endif #define __huge_vall_t union { unsigned char __c[12]; long double __ld; } #ifdef __GNUC__ -#define HUGE_VALl (__extension__ \ - ((__huge_vall_t) { __c: __HUGE_VALl_bytes }).__ld) +#define HUGE_VALL (__extension__ \ + ((__huge_vall_t) { __c: __HUGE_VALL_bytes }).__ld) #else /* Not GCC. */ -static __huge_vall_t __huge_vall = { __HUGE_VALl_bytes }; -#define HUGE_VALl (__huge_vall.__ld) +static __huge_vall_t __huge_vall = { __HUGE_VALL_bytes }; +#define HUGE_VALL (__huge_vall.__ld) #endif /* GCC. */ -#endif /* __USE_GNU. */ + +/* Expression representing positive infinity. Here it is the same as + HUGE_VALF. */ +#define INFINITY HUGE_VALF + +#endif /* __USE_ISOC9X. */ #endif /* huge_val.h */ diff --git a/sysdeps/libm-ieee754/s_cbrtl.c b/sysdeps/libm-ieee754/s_cbrtl.c index 9f45faa00c..21e7727728 100644 --- a/sysdeps/libm-ieee754/s_cbrtl.c +++ b/sysdeps/libm-ieee754/s_cbrtl.c @@ -90,7 +90,7 @@ G = 3.57142857142857150787e-01L; /* 5/14 */ { u_int64_t xxl = ((u_int64_t) se) << 32 | x0; xxl /= 3; - xxl += B1_EXP << 16 | B1_MANT; + xxl += ((u_int64_t) B1_EXP) << 32 | B1_MANT; SET_LDOUBLE_MSW(t,xxl&0xffffffffu); xxl >>= 32; SET_LDOUBLE_EXP(t,xxl); diff --git a/sysdeps/posix/gai_strerror.c b/sysdeps/posix/gai_strerror.c index b89a1f6889..f5b33cb8db 100644 --- a/sysdeps/posix/gai_strerror.c +++ b/sysdeps/posix/gai_strerror.c @@ -43,7 +43,7 @@ values[] = char * gai_strerror (int code) { - int i; + size_t i; for (i = 0; i < sizeof (values) / sizeof (values[0]); ++i) if (values[i].code == code) return (char *) values[i].msg; diff --git a/sysdeps/unix/syscalls.list b/sysdeps/unix/syscalls.list index fba1245730..9a2325c35c 100644 --- a/sysdeps/unix/syscalls.list +++ b/sysdeps/unix/syscalls.list @@ -7,7 +7,7 @@ chmod - chmod 2 __chmod chmod chown - chown 3 __chown chown chroot - chroot 1 chroot close - close 1 __libc_close __close close -dup - dup 2 __dup dup +dup - dup 1 __dup dup dup2 - dup2 2 __dup2 dup2 fchdir - fchdir 1 fchdir fcntl - fcntl 3 __libc_fcntl __fcntl fcntl diff --git a/sysdeps/unix/sysv/linux/accept.S b/sysdeps/unix/sysv/linux/accept.S index 5936a0185b..014684c708 100644 --- a/sysdeps/unix/sysv/linux/accept.S +++ b/sysdeps/unix/sysv/linux/accept.S @@ -1,2 +1,3 @@ #define socket accept +#define NARGS 3 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/bind.S b/sysdeps/unix/sysv/linux/bind.S index fc82b65a2f..61fb5ebff8 100644 --- a/sysdeps/unix/sysv/linux/bind.S +++ b/sysdeps/unix/sysv/linux/bind.S @@ -1,2 +1,3 @@ #define socket bind +#define NARGS 3 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/connect.S b/sysdeps/unix/sysv/linux/connect.S index 3433043d8c..93aad35d85 100644 --- a/sysdeps/unix/sysv/linux/connect.S +++ b/sysdeps/unix/sysv/linux/connect.S @@ -1,2 +1,3 @@ #define socket connect +#define NARGS 3 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/getpeername.S b/sysdeps/unix/sysv/linux/getpeername.S index 8429fcdf76..a6d8e86d4e 100644 --- a/sysdeps/unix/sysv/linux/getpeername.S +++ b/sysdeps/unix/sysv/linux/getpeername.S @@ -1,2 +1,3 @@ #define socket getpeername +#define NARGS 3 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/getsockname.S b/sysdeps/unix/sysv/linux/getsockname.S index 6782707f88..c138be9da5 100644 --- a/sysdeps/unix/sysv/linux/getsockname.S +++ b/sysdeps/unix/sysv/linux/getsockname.S @@ -1,2 +1,3 @@ #define socket getsockname +#define NARGS 3 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/getsockopt.S b/sysdeps/unix/sysv/linux/getsockopt.S index 6ce92a6330..6f982082ae 100644 --- a/sysdeps/unix/sysv/linux/getsockopt.S +++ b/sysdeps/unix/sysv/linux/getsockopt.S @@ -1,2 +1,3 @@ #define socket getsockopt +#define NARGS 5 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/i386/socket.S b/sysdeps/unix/sysv/linux/i386/socket.S index 78e8b03cce..441c143156 100644 --- a/sysdeps/unix/sysv/linux/i386/socket.S +++ b/sysdeps/unix/sysv/linux/i386/socket.S @@ -1,20 +1,20 @@ -/* Copyright (C) 1995, 1996 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 -modify it under the terms of the GNU Library General Public License as -published by the Free Software Foundation; either version 2 of the -License, or (at your option) any later version. - -The GNU C Library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Library General Public License for more details. - -You should have received a copy of the GNU Library General Public -License along with the GNU C Library; see the file COPYING.LIB. If -not, write to the Free Software Foundation, Inc., 675 Mass Ave, -Cambridge, MA 02139, USA. */ +/* Copyright (C) 1995, 1996, 1997 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 + modify it under the terms of the GNU Library General Public License as + published by the Free Software Foundation; either version 2 of the + License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Library General Public License for more details. + + You should have received a copy of the GNU Library General Public + License along with the GNU C Library; see the file COPYING.LIB. If not, + write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, + Boston, MA 02111-1307, USA. */ #include <sysdep.h> #include <sys/socketcall.h> diff --git a/sysdeps/unix/sysv/linux/listen.S b/sysdeps/unix/sysv/linux/listen.S index d2cbec60a0..4c7e435196 100644 --- a/sysdeps/unix/sysv/linux/listen.S +++ b/sysdeps/unix/sysv/linux/listen.S @@ -1,2 +1,3 @@ #define socket listen +#define NARGS 2 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/recv.S b/sysdeps/unix/sysv/linux/recv.S index f1081cc431..ae17ba3fd3 100644 --- a/sysdeps/unix/sysv/linux/recv.S +++ b/sysdeps/unix/sysv/linux/recv.S @@ -1,2 +1,3 @@ #define socket recv +#define NARGS 4 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/recvfrom.S b/sysdeps/unix/sysv/linux/recvfrom.S index febaa9ef55..ed03d3c44b 100644 --- a/sysdeps/unix/sysv/linux/recvfrom.S +++ b/sysdeps/unix/sysv/linux/recvfrom.S @@ -1,2 +1,3 @@ #define socket recvfrom +#define NARGS 6 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/recvmsg.S b/sysdeps/unix/sysv/linux/recvmsg.S index ffadd30195..bb897d2b63 100644 --- a/sysdeps/unix/sysv/linux/recvmsg.S +++ b/sysdeps/unix/sysv/linux/recvmsg.S @@ -1,2 +1,3 @@ #define socket recvmsg +#define NARGS 3 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/send.S b/sysdeps/unix/sysv/linux/send.S index 52293c6524..596135e690 100644 --- a/sysdeps/unix/sysv/linux/send.S +++ b/sysdeps/unix/sysv/linux/send.S @@ -1,2 +1,3 @@ #define socket send +#define NARGS 4 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/sendmsg.S b/sysdeps/unix/sysv/linux/sendmsg.S index 65f2c3eb98..f0aabb7023 100644 --- a/sysdeps/unix/sysv/linux/sendmsg.S +++ b/sysdeps/unix/sysv/linux/sendmsg.S @@ -1,2 +1,3 @@ #define socket sendmsg +#define NARGS 3 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/sendto.S b/sysdeps/unix/sysv/linux/sendto.S index aa637ce9c9..3464d46e52 100644 --- a/sysdeps/unix/sysv/linux/sendto.S +++ b/sysdeps/unix/sysv/linux/sendto.S @@ -1,2 +1,3 @@ #define socket sendto +#define NARGS 6 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/setsockopt.S b/sysdeps/unix/sysv/linux/setsockopt.S index 33d57179ca..01b2799ae8 100644 --- a/sysdeps/unix/sysv/linux/setsockopt.S +++ b/sysdeps/unix/sysv/linux/setsockopt.S @@ -1,2 +1,3 @@ #define socket setsockopt +#define NARGS 5 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/shutdown.S b/sysdeps/unix/sysv/linux/shutdown.S index 6cc95d50f9..e2462d0eca 100644 --- a/sysdeps/unix/sysv/linux/shutdown.S +++ b/sysdeps/unix/sysv/linux/shutdown.S @@ -1,2 +1,3 @@ #define socket shutdown +#define NARGS 2 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/socketpair.S b/sysdeps/unix/sysv/linux/socketpair.S index da71c57dea..c954ad1a4b 100644 --- a/sysdeps/unix/sysv/linux/socketpair.S +++ b/sysdeps/unix/sysv/linux/socketpair.S @@ -1,2 +1,3 @@ #define socket socketpair +#define NARGS 4 #include <socket.S> diff --git a/sysdeps/unix/sysv/linux/timebits.h b/sysdeps/unix/sysv/linux/timebits.h index f2f73a48d4..de30a6f348 100644 --- a/sysdeps/unix/sysv/linux/timebits.h +++ b/sysdeps/unix/sysv/linux/timebits.h @@ -1,5 +1,5 @@ /* System-dependent timing definitions. Linux version. - Copyright (C) 1996 Free Software Foundation, Inc. + Copyright (C) 1996, 1997 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 @@ -43,8 +43,10 @@ struct timeval XSI-conformant systems. */ # define CLOCKS_PER_SEC 1000000 +# ifndef __STRICT_ANSI__ /* Even though CLOCKS_PER_SEC has such a strange value CLK_TCK presents the real value for clock ticks per second for the system. */ -# define CLK_TCK 100 +# define CLK_TCK 100 +# endif #endif /* timebits.h */ |