1 /* Wrapper arpund system calls to provide cancelation points.
2 Copyright (C) 1996,1997,1998,1999,2000,2001 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
29 #include <sys/resource.h>
31 #include <sys/socket.h>
35 /* We need a hook to force this file to be linked in when static
36 libpthread is used. */
37 const int __pthread_provide_wrappers
= 0;
41 #define CANCELABLE_SYSCALL(res_type, name, param_list, params) \
42 res_type __libc_##name param_list; \
44 __attribute__ ((weak)) \
49 pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, &oldtype); \
50 result = __libc_##name params; \
51 pthread_setcanceltype (oldtype, NULL); \
55 #define CANCELABLE_SYSCALL_VA(res_type, name, param_list, params, last_arg) \
56 res_type __libc_##name param_list; \
58 __attribute__ ((weak)) \
64 pthread_setcanceltype (PTHREAD_CANCEL_ASYNCHRONOUS, &oldtype); \
65 va_start (ap, last_arg); \
66 result = __libc_##name params; \
68 pthread_setcanceltype (oldtype, NULL); \
74 CANCELABLE_SYSCALL (int, close
, (int fd
), (fd
))
75 strong_alias (close
, __close
)
79 CANCELABLE_SYSCALL_VA (int, fcntl
, (int fd
, int cmd
, ...),
80 (fd
, cmd
, va_arg (ap
, long int)), cmd
)
81 strong_alias (fcntl
, __fcntl
)
85 CANCELABLE_SYSCALL (int, fsync
, (int fd
), (fd
))
89 CANCELABLE_SYSCALL (off_t
, lseek
, (int fd
, off_t offset
, int whence
),
91 strong_alias (lseek
, __lseek
)
95 CANCELABLE_SYSCALL (off64_t
, lseek64
, (int fd
, off64_t offset
, int whence
),
100 CANCELABLE_SYSCALL (int, msync
, (__ptr_t addr
, size_t length
, int flags
),
101 (addr
, length
, flags
))
105 CANCELABLE_SYSCALL (int, nanosleep
, (const struct timespec
*requested_time
,
106 struct timespec
*remaining
),
107 (requested_time
, remaining
))
111 CANCELABLE_SYSCALL_VA (int, open
, (const char *pathname
, int flags
, ...),
112 (pathname
, flags
, va_arg (ap
, mode_t
)), flags
)
113 strong_alias (open
, __open
)
117 CANCELABLE_SYSCALL_VA (int, open64
, (const char *pathname
, int flags
, ...),
118 (pathname
, flags
, va_arg (ap
, mode_t
)), flags
)
119 strong_alias (open64
, __open64
)
123 CANCELABLE_SYSCALL (int, pause
, (void), ())
127 CANCELABLE_SYSCALL (ssize_t
, pread
, (int fd
, void *buf
, size_t count
,
129 (fd
, buf
, count
, offset
))
133 CANCELABLE_SYSCALL (ssize_t
, pread64
, (int fd
, void *buf
, size_t count
,
135 (fd
, buf
, count
, offset
))
136 strong_alias (pread64
, __pread64
)
140 CANCELABLE_SYSCALL (ssize_t
, pwrite
, (int fd
, const void *buf
, size_t n
,
142 (fd
, buf
, n
, offset
))
146 CANCELABLE_SYSCALL (ssize_t
, pwrite64
, (int fd
, const void *buf
, size_t n
,
148 (fd
, buf
, n
, offset
))
149 strong_alias (pwrite64
, __pwrite64
)
153 CANCELABLE_SYSCALL (ssize_t
, read
, (int fd
, void *buf
, size_t count
),
155 strong_alias (read
, __read
)
159 CANCELABLE_SYSCALL (int, system
, (const char *line
), (line
))
163 CANCELABLE_SYSCALL (int, tcdrain
, (int fd
), (fd
))
167 CANCELABLE_SYSCALL (__pid_t
, wait
, (__WAIT_STATUS_DEFN stat_loc
), (stat_loc
))
168 strong_alias (wait
, __wait
)
172 CANCELABLE_SYSCALL (__pid_t
, waitpid
, (__pid_t pid
, int *stat_loc
,
174 (pid
, stat_loc
, options
))
178 CANCELABLE_SYSCALL (ssize_t
, write
, (int fd
, const void *buf
, size_t n
),
180 strong_alias (write
, __write
)
183 /* The following system calls are thread cancellation points specified
187 CANCELABLE_SYSCALL (int, accept
, (int fd
, __SOCKADDR_ARG addr
,
188 socklen_t
*addr_len
),
189 (fd
, addr
, addr_len
))
192 CANCELABLE_SYSCALL (int, connect
, (int fd
, __CONST_SOCKADDR_ARG addr
,
195 strong_alias (connect
, __connect
)
198 CANCELABLE_SYSCALL (ssize_t
, recv
, (int fd
, __ptr_t buf
, size_t n
, int flags
),
202 CANCELABLE_SYSCALL (ssize_t
, recvfrom
, (int fd
, __ptr_t buf
, size_t n
, int flags
,
203 __SOCKADDR_ARG addr
, socklen_t
*addr_len
),
204 (fd
, buf
, n
, flags
, addr
, addr_len
))
207 CANCELABLE_SYSCALL (ssize_t
, recvmsg
, (int fd
, struct msghdr
*message
, int flags
),
208 (fd
, message
, flags
))
211 CANCELABLE_SYSCALL (ssize_t
, send
, (int fd
, const __ptr_t buf
, size_t n
,
214 strong_alias (send
, __send
)
217 CANCELABLE_SYSCALL (ssize_t
, sendmsg
, (int fd
, const struct msghdr
*message
,
219 (fd
, message
, flags
))
222 CANCELABLE_SYSCALL (ssize_t
, sendto
, (int fd
, const __ptr_t buf
, size_t n
,
223 int flags
, __CONST_SOCKADDR_ARG addr
,
225 (fd
, buf
, n
, flags
, addr
, addr_len
))