]> git.ipfire.org Git - thirdparty/glibc.git/blame - sysdeps/unix/sysv/linux/not-cancel.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / unix / sysv / linux / not-cancel.h
CommitLineData
2fbdf533 1/* Uncancelable versions of cancelable interfaces. Linux/NPTL version.
04277e02 2 Copyright (C) 2003-2019 Free Software Foundation, Inc.
2c008571
UD
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
59ba27a6
PE
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
2c008571 19
34caaafd
AZ
20#ifndef NOT_CANCEL_H
21# define NOT_CANCEL_H
22
c2284574 23#include <fcntl.h>
2c008571 24#include <sysdep.h>
34caaafd
AZ
25#include <errno.h>
26#include <unistd.h>
27#include <sys/syscall.h>
a8410a5f 28#include <sys/wait.h>
6f33fd04 29#include <time.h>
2c008571 30
c2284574
AZ
31/* Non cancellable open syscall. */
32__typeof (open) __open_nocancel;
c2284574
AZ
33
34/* Non cancellable open syscall (LFS version). */
35__typeof (open64) __open64_nocancel;
683040c3 36
0bb2fabc
AZ
37/* Non cancellable openat syscall. */
38__typeof (openat) __openat_nocancel;
0bb2fabc
AZ
39
40/* Non cacellable openat syscall (LFS version). */
41__typeof (openat64) __openat64_nocancel;
0bb2fabc 42
a748eb31
AZ
43/* Non cancellable read syscall. */
44__typeof (__read) __read_nocancel;
34caaafd
AZ
45
46/* Uncancelable write. */
c647fb88 47__typeof (__write) __write_nocancel;
2fbdf533 48
2c008571 49/* Uncancelable close. */
c181840c 50__typeof (__close) __close_nocancel;
c181840c
AZ
51
52/* Non cancellable close syscall that does not also set errno in case of
53 failure. */
54static inline void
55__close_nocancel_nostatus (int fd)
56{
57 __close_nocancel (fd);
58}
2c008571 59
19926de9
AZ
60/* Non cancellable writev syscall that does not also set errno in case of
61 failure. */
62static inline void
63__writev_nocancel_nostatus (int fd, const struct iovec *iov, int iovcnt)
64{
65 INTERNAL_SYSCALL_DECL (err);
66 INTERNAL_SYSCALL_CALL (writev, err, fd, iov, iovcnt);
67}
73299943
UD
68
69/* Uncancelable waitpid. */
a8410a5f 70__typeof (waitpid) __waitpid_nocancel;
b894c2ea
RM
71
72/* Uncancelable pause. */
08d6eb46 73__typeof (pause) __pause_nocancel;
b894c2ea
RM
74
75/* Uncancelable nanosleep. */
6f33fd04 76__typeof (__nanosleep) __nanosleep_nocancel;
b894c2ea 77
2b0b9a1c 78/* Uncancelable fcntl. */
06ab719d 79__typeof (__fcntl) __fcntl64_nocancel;
329ea513
ZW
80
81#if IS_IN (libc) || IS_IN (rtld)
82hidden_proto (__open_nocancel)
83hidden_proto (__open64_nocancel)
84hidden_proto (__openat_nocancel)
85hidden_proto (__openat64_nocancel)
86hidden_proto (__read_nocancel)
87hidden_proto (__write_nocancel)
88hidden_proto (__close_nocancel)
89hidden_proto (__waitpid_nocancel)
90hidden_proto (__pause_nocancel)
91hidden_proto (__nanosleep_nocancel)
06ab719d 92hidden_proto (__fcntl64_nocancel)
329ea513 93#endif
2b0b9a1c 94
34caaafd 95#endif /* NOT_CANCEL_H */