OSDN Git Service

Replace FSF snail mail address with URLs
[uclinux-h8/uClibc.git] / libpthread / linuxthreads / sysdeps / pthread / not-cancel.h
1 /* Uncancelable versions of cancelable interfaces.  Linux version.
2    Copyright (C) 2003, 2006 Free Software Foundation, Inc.
3    This file is part of the GNU C Library.
4    Contributed by Ulrich Drepper <drepper@redhat.com>, 2003.
5
6    The GNU C Library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
10
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    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public
17    License along with the GNU C Library; if not, see
18    <http://www.gnu.org/licenses/>.  */
19
20 #include <sys/types.h>
21 #include <sysdep.h>
22
23 /* Uncancelable open.  */
24 #define open_not_cancel(name, flags, mode) \
25    INLINE_SYSCALL (open, 3, (const char *) (name), (flags), (mode))
26 #define open_not_cancel_2(name, flags) \
27    INLINE_SYSCALL (open, 2, (const char *) (name), (flags))
28
29 /* Uncancelable openat.  */
30 #if !defined NOT_IN_libc || defined IS_IN_libpthread || defined IS_IN_librt
31 extern int __openat_nocancel (int fd, const char *fname, int oflag,
32                               mode_t mode) attribute_hidden;
33 extern int __openat64_nocancel (int fd, const char *fname, int oflag,
34                                 mode_t mode) attribute_hidden;
35 #else
36 # define __openat_nocancel(fd, fname, oflag, mode) \
37   openat (fd, fname, oflag, mode)
38 # define __openat64_nocancel(fd, fname, oflag, mode) \
39   openat64 (fd, fname, oflag, mode)
40 #endif
41
42 #define openat_not_cancel(fd, fname, oflag, mode) \
43   __openat_nocancel (fd, fname, oflag, mode)
44 #define openat_not_cancel_3(fd, fname, oflag) \
45   __openat_nocancel (fd, fname, oflag, 0)
46 #define openat64_not_cancel(fd, fname, oflag, mode) \
47   __openat64_nocancel (fd, fname, oflag, mode)
48 #define openat64_not_cancel_3(fd, fname, oflag) \
49   __openat64_nocancel (fd, fname, oflag, 0)
50
51 /* Uncancelable close.  */
52 #define close_not_cancel(fd) \
53   INLINE_SYSCALL (close, 1, fd)
54 #define close_not_cancel_no_status(fd) \
55   (void) ({ INTERNAL_SYSCALL_DECL (err);                                      \
56             INTERNAL_SYSCALL (close, err, 1, (fd)); })
57
58 /* Uncancelable read.  */
59 #define read_not_cancel(fd, buf, n) \
60   INLINE_SYSCALL (read, 3, (fd), (buf), (n))
61
62 /* Uncancelable write.  */
63 #define write_not_cancel(fd, buf, n) \
64   INLINE_SYSCALL (write, 3, (fd), (buf), (n))
65
66 /* Uncancelable writev.  */
67 #define writev_not_cancel_no_status(fd, iov, n) \
68   (void) ({ INTERNAL_SYSCALL_DECL (err);                                      \
69             INTERNAL_SYSCALL (writev, err, 3, (fd), (iov), (n)); })
70
71 /* Uncancelable fcntl.  */
72 #define fcntl_not_cancel(fd, cmd, val) \
73   __fcntl_nocancel (fd, cmd, val)
74
75 /* Uncancelable waitpid.  */
76 #ifdef __NR_waitpid
77 # define waitpid_not_cancel(pid, stat_loc, options) \
78   INLINE_SYSCALL (waitpid, 3, pid, stat_loc, options)
79 #else
80 # define waitpid_not_cancel(pid, stat_loc, options) \
81   INLINE_SYSCALL (wait4, 4, pid, stat_loc, options, NULL)
82 #endif
83
84 /* Uncancelable pause.  */
85 #ifdef __NR_pause
86 # define pause_not_cancel() \
87   INLINE_SYSCALL (pause, 0)
88 #else
89 # define pause_not_cancel() \
90   __pause_nocancel ()
91 #endif
92
93 /* Uncancelable nanosleep.  */
94 #ifdef __NR_nanosleep
95 # define nanosleep_not_cancel(requested_time, remaining) \
96   INLINE_SYSCALL (nanosleep, 2, requested_time, remaining)
97 #else
98 # define nanosleep_not_cancel(requested_time, remaining) \
99   __nanosleep_nocancel (requested_time, remaining)
100 #endif
101
102 /* Uncancelable sigsuspend.  */
103 #define sigsuspend_not_cancel(set) \
104   __sigsuspend_nocancel (set)