pthread_cancelstub.c revision 1.1.2.1 1 1.1.2.1 nathanw /* $NetBSD: pthread_cancelstub.c,v 1.1.2.1 2002/01/28 18:48:51 nathanw Exp $ */
2 1.1.2.1 nathanw
3 1.1.2.1 nathanw /*-
4 1.1.2.1 nathanw * Copyright (c) 2002 The NetBSD Foundation, Inc.
5 1.1.2.1 nathanw * All rights reserved.
6 1.1.2.1 nathanw *
7 1.1.2.1 nathanw * This code is derived from software contributed to The NetBSD Foundation
8 1.1.2.1 nathanw * by Nathan J. Williams.
9 1.1.2.1 nathanw *
10 1.1.2.1 nathanw * Redistribution and use in source and binary forms, with or without
11 1.1.2.1 nathanw * modification, are permitted provided that the following conditions
12 1.1.2.1 nathanw * are met:
13 1.1.2.1 nathanw * 1. Redistributions of source code must retain the above copyright
14 1.1.2.1 nathanw * notice, this list of conditions and the following disclaimer.
15 1.1.2.1 nathanw * 2. Redistributions in binary form must reproduce the above copyright
16 1.1.2.1 nathanw * notice, this list of conditions and the following disclaimer in the
17 1.1.2.1 nathanw * documentation and/or other materials provided with the distribution.
18 1.1.2.1 nathanw * 3. All advertising materials mentioning features or use of this software
19 1.1.2.1 nathanw * must display the following acknowledgement:
20 1.1.2.1 nathanw * This product includes software developed by the NetBSD
21 1.1.2.1 nathanw * Foundation, Inc. and its contributors.
22 1.1.2.1 nathanw * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1.2.1 nathanw * contributors may be used to endorse or promote products derived
24 1.1.2.1 nathanw * from this software without specific prior written permission.
25 1.1.2.1 nathanw *
26 1.1.2.1 nathanw * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1.2.1 nathanw * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1.2.1 nathanw * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1.2.1 nathanw * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1.2.1 nathanw * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1.2.1 nathanw * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1.2.1 nathanw * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1.2.1 nathanw * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1.2.1 nathanw * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1.2.1 nathanw * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1.2.1 nathanw * POSSIBILITY OF SUCH DAMAGE.
37 1.1.2.1 nathanw */
38 1.1.2.1 nathanw
39 1.1.2.1 nathanw #include <sys/msg.h>
40 1.1.2.1 nathanw #include <sys/types.h>
41 1.1.2.1 nathanw #include <sys/uio.h>
42 1.1.2.1 nathanw #include <sys/wait.h>
43 1.1.2.1 nathanw #include <fcntl.h>
44 1.1.2.1 nathanw #include <poll.h>
45 1.1.2.1 nathanw #include <stdarg.h>
46 1.1.2.1 nathanw #include <unistd.h>
47 1.1.2.1 nathanw
48 1.1.2.1 nathanw /* XXX this is necessary to get the prototypes for the __sigsuspend14
49 1.1.2.1 nathanw * XXX and __msync13 internal names, instead of the application-visible
50 1.1.2.1 nathanw * XXX sigsuspend and msync names. It's kind of gross, but we're pretty
51 1.1.2.1 nathanw * XXX intimate with libc already.
52 1.1.2.1 nathanw */
53 1.1.2.1 nathanw #define __LIBC12_SOURCE__
54 1.1.2.1 nathanw #include <signal.h>
55 1.1.2.1 nathanw #include <sys/mman.h>
56 1.1.2.1 nathanw
57 1.1.2.1 nathanw #include "pthread.h"
58 1.1.2.1 nathanw #include "pthread_int.h"
59 1.1.2.1 nathanw
60 1.1.2.1 nathanw int _syscall_close(int);
61 1.1.2.1 nathanw int _syscall_fcntl(int, int, ...);
62 1.1.2.1 nathanw int _syscall_fsync(int);
63 1.1.2.1 nathanw ssize_t _syscall_msgrcv(int, void *, size_t, long, int);
64 1.1.2.1 nathanw int _syscall_msgsnd(int, const void *, size_t, int);
65 1.1.2.1 nathanw int _syscall___msync13(void *, size_t, int);
66 1.1.2.1 nathanw int _syscall_nanosleep(const struct timespec *, struct timespec *);
67 1.1.2.1 nathanw int _syscall_open(const char *, int, ...);
68 1.1.2.1 nathanw int _syscall_poll(struct pollfd *, nfds_t, int);
69 1.1.2.1 nathanw ssize_t _syscall_pread(int, void *, size_t, off_t);
70 1.1.2.1 nathanw ssize_t _syscall_pwrite(int, const void *, size_t, off_t);
71 1.1.2.1 nathanw ssize_t _syscall_read(int, void *, size_t);
72 1.1.2.1 nathanw ssize_t _syscall_readv(int, const struct iovec *, int);
73 1.1.2.1 nathanw int _syscall_select(int, fd_set *, fd_set *, fd_set *, struct timeval *);
74 1.1.2.1 nathanw int _syscall___sigsuspend14(const sigset_t *);
75 1.1.2.1 nathanw int _syscall_wait4(pid_t, int *, int, struct rusage *);
76 1.1.2.1 nathanw ssize_t _syscall_write(int, const void *, size_t);
77 1.1.2.1 nathanw ssize_t _syscall_writev(int, const struct iovec *, int);
78 1.1.2.1 nathanw
79 1.1.2.1 nathanw
80 1.1.2.1 nathanw int
81 1.1.2.1 nathanw close(int d)
82 1.1.2.1 nathanw {
83 1.1.2.1 nathanw int retval;
84 1.1.2.1 nathanw pthread_t self;
85 1.1.2.1 nathanw
86 1.1.2.1 nathanw self = pthread__self();
87 1.1.2.1 nathanw pthread__testcancel(self);
88 1.1.2.1 nathanw retval = _syscall_close(d);
89 1.1.2.1 nathanw pthread__testcancel(self);
90 1.1.2.1 nathanw
91 1.1.2.1 nathanw return retval;
92 1.1.2.1 nathanw }
93 1.1.2.1 nathanw
94 1.1.2.1 nathanw int
95 1.1.2.1 nathanw fcntl(int fd, int cmd, ...)
96 1.1.2.1 nathanw {
97 1.1.2.1 nathanw int retval;
98 1.1.2.1 nathanw pthread_t self;
99 1.1.2.1 nathanw va_list ap;
100 1.1.2.1 nathanw
101 1.1.2.1 nathanw self = pthread__self();
102 1.1.2.1 nathanw pthread__testcancel(self);
103 1.1.2.1 nathanw va_start(ap, cmd);
104 1.1.2.1 nathanw retval = _syscall_fcntl(fd, cmd, va_arg(ap, void *));
105 1.1.2.1 nathanw va_end(ap);
106 1.1.2.1 nathanw pthread__testcancel(self);
107 1.1.2.1 nathanw
108 1.1.2.1 nathanw return retval;
109 1.1.2.1 nathanw }
110 1.1.2.1 nathanw
111 1.1.2.1 nathanw
112 1.1.2.1 nathanw int
113 1.1.2.1 nathanw fsync(int d)
114 1.1.2.1 nathanw {
115 1.1.2.1 nathanw int retval;
116 1.1.2.1 nathanw pthread_t self;
117 1.1.2.1 nathanw
118 1.1.2.1 nathanw self = pthread__self();
119 1.1.2.1 nathanw pthread__testcancel(self);
120 1.1.2.1 nathanw retval = _syscall_fsync(d);
121 1.1.2.1 nathanw pthread__testcancel(self);
122 1.1.2.1 nathanw
123 1.1.2.1 nathanw return retval;
124 1.1.2.1 nathanw }
125 1.1.2.1 nathanw
126 1.1.2.1 nathanw ssize_t
127 1.1.2.1 nathanw msgrcv(int msgid, void *msgp, size_t msgsz, long msgtyp, int msgflg)
128 1.1.2.1 nathanw {
129 1.1.2.1 nathanw ssize_t retval;
130 1.1.2.1 nathanw pthread_t self;
131 1.1.2.1 nathanw
132 1.1.2.1 nathanw self = pthread__self();
133 1.1.2.1 nathanw pthread__testcancel(self);
134 1.1.2.1 nathanw retval = _syscall_msgrcv(msgid, msgp, msgsz, msgtyp, msgflg);
135 1.1.2.1 nathanw pthread__testcancel(self);
136 1.1.2.1 nathanw
137 1.1.2.1 nathanw return retval;
138 1.1.2.1 nathanw }
139 1.1.2.1 nathanw
140 1.1.2.1 nathanw int
141 1.1.2.1 nathanw msgsnd(int msgid, const void *msgp, size_t msgsz, int msgflg)
142 1.1.2.1 nathanw {
143 1.1.2.1 nathanw int retval;
144 1.1.2.1 nathanw pthread_t self;
145 1.1.2.1 nathanw
146 1.1.2.1 nathanw self = pthread__self();
147 1.1.2.1 nathanw pthread__testcancel(self);
148 1.1.2.1 nathanw retval = _syscall_msgsnd(msgid, msgp, msgsz, msgflg);
149 1.1.2.1 nathanw pthread__testcancel(self);
150 1.1.2.1 nathanw
151 1.1.2.1 nathanw return retval;
152 1.1.2.1 nathanw }
153 1.1.2.1 nathanw
154 1.1.2.1 nathanw int
155 1.1.2.1 nathanw __msync13(void *addr, size_t len, int flags)
156 1.1.2.1 nathanw {
157 1.1.2.1 nathanw int retval;
158 1.1.2.1 nathanw pthread_t self;
159 1.1.2.1 nathanw
160 1.1.2.1 nathanw self = pthread__self();
161 1.1.2.1 nathanw pthread__testcancel(self);
162 1.1.2.1 nathanw retval = _syscall___msync13(addr, len, flags);
163 1.1.2.1 nathanw pthread__testcancel(self);
164 1.1.2.1 nathanw
165 1.1.2.1 nathanw return retval;
166 1.1.2.1 nathanw }
167 1.1.2.1 nathanw
168 1.1.2.1 nathanw int
169 1.1.2.1 nathanw nanosleep(const struct timespec *rqtp, struct timespec *rmtp)
170 1.1.2.1 nathanw {
171 1.1.2.1 nathanw int retval;
172 1.1.2.1 nathanw pthread_t self;
173 1.1.2.1 nathanw
174 1.1.2.1 nathanw self = pthread__self();
175 1.1.2.1 nathanw pthread__testcancel(self);
176 1.1.2.1 nathanw retval = _syscall_nanosleep(rqtp, rmtp);
177 1.1.2.1 nathanw pthread__testcancel(self);
178 1.1.2.1 nathanw
179 1.1.2.1 nathanw return retval;
180 1.1.2.1 nathanw }
181 1.1.2.1 nathanw
182 1.1.2.1 nathanw int
183 1.1.2.1 nathanw open(const char *path, int flags, ...)
184 1.1.2.1 nathanw {
185 1.1.2.1 nathanw int retval;
186 1.1.2.1 nathanw pthread_t self;
187 1.1.2.1 nathanw va_list ap;
188 1.1.2.1 nathanw
189 1.1.2.1 nathanw self = pthread__self();
190 1.1.2.1 nathanw pthread__testcancel(self);
191 1.1.2.1 nathanw va_start(ap, flags);
192 1.1.2.1 nathanw retval = _syscall_open(path, flags, va_arg(ap, mode_t));
193 1.1.2.1 nathanw va_end(ap);
194 1.1.2.1 nathanw pthread__testcancel(self);
195 1.1.2.1 nathanw
196 1.1.2.1 nathanw return retval;
197 1.1.2.1 nathanw }
198 1.1.2.1 nathanw
199 1.1.2.1 nathanw int
200 1.1.2.1 nathanw poll(struct pollfd *fds, nfds_t nfds, int timeout)
201 1.1.2.1 nathanw {
202 1.1.2.1 nathanw int retval;
203 1.1.2.1 nathanw pthread_t self;
204 1.1.2.1 nathanw
205 1.1.2.1 nathanw self = pthread__self();
206 1.1.2.1 nathanw pthread__testcancel(self);
207 1.1.2.1 nathanw retval = _syscall_poll(fds, nfds, timeout);
208 1.1.2.1 nathanw pthread__testcancel(self);
209 1.1.2.1 nathanw
210 1.1.2.1 nathanw return retval;
211 1.1.2.1 nathanw }
212 1.1.2.1 nathanw
213 1.1.2.1 nathanw ssize_t
214 1.1.2.1 nathanw pread(int d, void *buf, size_t nbytes, off_t offset)
215 1.1.2.1 nathanw {
216 1.1.2.1 nathanw ssize_t retval;
217 1.1.2.1 nathanw pthread_t self;
218 1.1.2.1 nathanw
219 1.1.2.1 nathanw self = pthread__self();
220 1.1.2.1 nathanw pthread__testcancel(self);
221 1.1.2.1 nathanw retval = _syscall_pread(d, buf, nbytes, offset);
222 1.1.2.1 nathanw pthread__testcancel(self);
223 1.1.2.1 nathanw
224 1.1.2.1 nathanw return retval;
225 1.1.2.1 nathanw }
226 1.1.2.1 nathanw
227 1.1.2.1 nathanw ssize_t
228 1.1.2.1 nathanw pwrite(int d, const void *buf, size_t nbytes, off_t offset)
229 1.1.2.1 nathanw {
230 1.1.2.1 nathanw ssize_t retval;
231 1.1.2.1 nathanw pthread_t self;
232 1.1.2.1 nathanw
233 1.1.2.1 nathanw self = pthread__self();
234 1.1.2.1 nathanw pthread__testcancel(self);
235 1.1.2.1 nathanw retval = _syscall_pwrite(d, buf, nbytes, offset);
236 1.1.2.1 nathanw pthread__testcancel(self);
237 1.1.2.1 nathanw
238 1.1.2.1 nathanw return retval;
239 1.1.2.1 nathanw }
240 1.1.2.1 nathanw
241 1.1.2.1 nathanw ssize_t
242 1.1.2.1 nathanw read(int d, void *buf, size_t nbytes)
243 1.1.2.1 nathanw {
244 1.1.2.1 nathanw ssize_t retval;
245 1.1.2.1 nathanw pthread_t self;
246 1.1.2.1 nathanw
247 1.1.2.1 nathanw self = pthread__self();
248 1.1.2.1 nathanw pthread__testcancel(self);
249 1.1.2.1 nathanw retval = _syscall_read(d, buf, nbytes);
250 1.1.2.1 nathanw pthread__testcancel(self);
251 1.1.2.1 nathanw
252 1.1.2.1 nathanw return retval;
253 1.1.2.1 nathanw }
254 1.1.2.1 nathanw
255 1.1.2.1 nathanw ssize_t
256 1.1.2.1 nathanw readv(int d, const struct iovec *iov, int iovcnt)
257 1.1.2.1 nathanw {
258 1.1.2.1 nathanw ssize_t retval;
259 1.1.2.1 nathanw pthread_t self;
260 1.1.2.1 nathanw
261 1.1.2.1 nathanw self = pthread__self();
262 1.1.2.1 nathanw pthread__testcancel(self);
263 1.1.2.1 nathanw retval = _syscall_readv(d, iov, iovcnt);
264 1.1.2.1 nathanw pthread__testcancel(self);
265 1.1.2.1 nathanw
266 1.1.2.1 nathanw return retval;
267 1.1.2.1 nathanw }
268 1.1.2.1 nathanw
269 1.1.2.1 nathanw int
270 1.1.2.1 nathanw select(int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
271 1.1.2.1 nathanw struct timeval *timeout)
272 1.1.2.1 nathanw {
273 1.1.2.1 nathanw int retval;
274 1.1.2.1 nathanw pthread_t self;
275 1.1.2.1 nathanw
276 1.1.2.1 nathanw self = pthread__self();
277 1.1.2.1 nathanw pthread__testcancel(self);
278 1.1.2.1 nathanw retval = _syscall_select(nfds, readfds, writefds, exceptfds, timeout);
279 1.1.2.1 nathanw pthread__testcancel(self);
280 1.1.2.1 nathanw
281 1.1.2.1 nathanw return retval;
282 1.1.2.1 nathanw }
283 1.1.2.1 nathanw
284 1.1.2.1 nathanw int
285 1.1.2.1 nathanw __sigsuspend14(const sigset_t *sigmask)
286 1.1.2.1 nathanw {
287 1.1.2.1 nathanw int retval;
288 1.1.2.1 nathanw pthread_t self;
289 1.1.2.1 nathanw
290 1.1.2.1 nathanw self = pthread__self();
291 1.1.2.1 nathanw pthread__testcancel(self);
292 1.1.2.1 nathanw retval = _syscall___sigsuspend14(sigmask);
293 1.1.2.1 nathanw pthread__testcancel(self);
294 1.1.2.1 nathanw
295 1.1.2.1 nathanw return retval;
296 1.1.2.1 nathanw }
297 1.1.2.1 nathanw
298 1.1.2.1 nathanw pid_t
299 1.1.2.1 nathanw wait4(pid_t wpid, int *status, int options, struct rusage *rusage)
300 1.1.2.1 nathanw {
301 1.1.2.1 nathanw pid_t retval;
302 1.1.2.1 nathanw pthread_t self;
303 1.1.2.1 nathanw
304 1.1.2.1 nathanw self = pthread__self();
305 1.1.2.1 nathanw pthread__testcancel(self);
306 1.1.2.1 nathanw retval = _syscall_wait4(wpid, status, options, rusage);
307 1.1.2.1 nathanw pthread__testcancel(self);
308 1.1.2.1 nathanw
309 1.1.2.1 nathanw return retval;
310 1.1.2.1 nathanw }
311 1.1.2.1 nathanw
312 1.1.2.1 nathanw ssize_t
313 1.1.2.1 nathanw write(int d, const void *buf, size_t nbytes)
314 1.1.2.1 nathanw {
315 1.1.2.1 nathanw ssize_t retval;
316 1.1.2.1 nathanw pthread_t self;
317 1.1.2.1 nathanw
318 1.1.2.1 nathanw self = pthread__self();
319 1.1.2.1 nathanw pthread__testcancel(self);
320 1.1.2.1 nathanw retval = _syscall_write(d, buf, nbytes);
321 1.1.2.1 nathanw pthread__testcancel(self);
322 1.1.2.1 nathanw
323 1.1.2.1 nathanw return retval;
324 1.1.2.1 nathanw }
325 1.1.2.1 nathanw
326 1.1.2.1 nathanw ssize_t
327 1.1.2.1 nathanw writev(int d, const struct iovec *iov, int iovcnt)
328 1.1.2.1 nathanw {
329 1.1.2.1 nathanw ssize_t retval;
330 1.1.2.1 nathanw pthread_t self;
331 1.1.2.1 nathanw
332 1.1.2.1 nathanw self = pthread__self();
333 1.1.2.1 nathanw pthread__testcancel(self);
334 1.1.2.1 nathanw retval = _syscall_writev(d, iov, iovcnt);
335 1.1.2.1 nathanw pthread__testcancel(self);
336 1.1.2.1 nathanw
337 1.1.2.1 nathanw return retval;
338 1.1.2.1 nathanw }
339