1 /* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 #include <sysdep-cancel.h>
20 #include <socketcall.h>
22 #define P(a, b) P2(a, b)
26 /* The socket-oriented system calls are handled unusally in Linux.
27 They are all gated through the single `socketcall' system call number.
28 `socketcall' takes two arguments: the first is the subcode, specifying
29 which socket function is being called; and the second is a pointer to
30 the arguments to the specific function.
32 The .S files for the other calls just #define socket and #include this. */
36 #define __socket P(__,socket)
38 #define __socket socket
44 #if defined NEED_CANCELLATION && defined CENABLE
52 move.l #SYS_ify (socketcall), %d0 /* System call number in %d0. */
54 /* Use ## so `socket' is a separate token that might be #define'd. */
55 move.l #P (SOCKOP_,socket), %d1 /* Subcode is first arg to syscall. */
56 lea 4(%sp), %a1 /* Address of args is 2nd arg. */
59 /* Do the system call trap. */
62 /* Restore registers. */
65 /* %d0 is < 0 if there was an error. */
67 jmi SYSCALL_ERROR_LABEL
69 /* Successful; return the syscall's value. */
72 #if defined NEED_CANCELLATION && defined CENABLE
73 1: /* Enable asynchronous cancellation. */
80 move.l #SYS_ify (socketcall), %d0 /* System call number in %d0. */
82 /* Use ## so `socket' is a separate token that might be #define'd. */
83 move.l #P (SOCKOP_,socket), %d1 /* Subcode is first arg to syscall. */
84 lea 4+8(%sp), %a1 /* Address of args is 2nd arg. */
87 /* Do the system call trap. */
90 /* Restore cancellation. */
96 /* Restore registers. */
99 /* %d0 is < 0 if there was an error. */
101 jmi SYSCALL_ERROR_LABEL
103 /* Successful; return the syscall's value. */
107 PSEUDO_END (__socket)
109 #ifndef NO_WEAK_ALIAS
110 weak_alias (__socket, socket)