diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux')
-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 |
18 files changed, 37 insertions, 19 deletions
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 */ |