mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
2b0b9a1c85
This patch consolidate the remaning non cancellable syscall definitions on not-cancel.h header. They are: * __fcntl_nocancel: Moved from fcntl.h to not-cancel.h. * __sigsuspend_nocancel: Removed since988f991b50
it is not used or defined anymore. * __nanosleep_nocancel: Removed since6f33fd046b
it is defined on not-cancel.h. Now all non-cancellable syscall definition are defined on not-cancel (the only exceptions is the stdio symbol __fxprintf_nocancel which uses non cancellable open and it is used on getopt implementation). Checked on x86_64-linux-gnu and with build-many-glibc.py. * include/fcntl.h (__fcntl_nocancel): Remove definition. * include/signal.h (__sigsuspend_nocancel): Likewise. * include/time.h (__nanosleep_nocancel): Likewise. * sysdeps/generic/not-cancel.h (__fcntl_nocancel): New macro. * login/utmp_file.c: Include non cancellable syscall header. * sysdeps/unix/sysv/linux/not-cancel.h (__fcntl_nocancel): New prototype.
39 lines
1.2 KiB
C
39 lines
1.2 KiB
C
#ifndef _FCNTL_H
|
|
#include <io/fcntl.h>
|
|
|
|
#ifndef _ISOMAC
|
|
/* Now define the internal interfaces. */
|
|
extern int __open64 (const char *__file, int __oflag, ...);
|
|
libc_hidden_proto (__open64)
|
|
extern int __libc_open64 (const char *file, int oflag, ...);
|
|
extern int __libc_open (const char *file, int oflag, ...);
|
|
libc_hidden_proto (__libc_open)
|
|
extern int __libc_fcntl (int fd, int cmd, ...) attribute_hidden;
|
|
libc_hidden_proto (__libc_fcntl)
|
|
extern int __open (const char *__file, int __oflag, ...);
|
|
libc_hidden_proto (__open)
|
|
extern int __fcntl (int __fd, int __cmd, ...);
|
|
libc_hidden_proto (__fcntl)
|
|
extern int __openat (int __fd, const char *__file, int __oflag, ...)
|
|
__nonnull ((2));
|
|
libc_hidden_proto (__openat)
|
|
extern int __openat64 (int __fd, const char *__file, int __oflag, ...)
|
|
__nonnull ((2));
|
|
libc_hidden_proto (__openat64)
|
|
|
|
extern int __open_2 (const char *__path, int __oflag);
|
|
extern int __open64_2 (const char *__path, int __oflag);
|
|
extern int __openat_2 (int __fd, const char *__path, int __oflag);
|
|
extern int __openat64_2 (int __fd, const char *__path, int __oflag);
|
|
|
|
|
|
#if IS_IN (rtld)
|
|
# include <dl-fcntl.h>
|
|
#endif
|
|
|
|
/* Flag determining whether the *at system calls are available. */
|
|
extern int __have_atfcts attribute_hidden;
|
|
#endif
|
|
|
|
#endif
|