_libsys.h (a57e881d3297eb1d37d0edeee28362a23824a1d4) | _libsys.h (60f87c736807bd2b5a3ebe451add868232facf43) |
---|---|
1/* 2 * Public system call stubs provided by libsys. 3 * 4 * Do not use directly, include <libsys.h> instead. 5 * 6 * DO NOT EDIT-- this file is automatically @generated. 7 */ 8 --- 449 unchanged lines hidden (view full) --- 458typedef int (__sys_swapoff_t)(const char *, u_int); 459typedef int (__sys_kqueuex_t)(u_int); 460typedef int (__sys_membarrier_t)(int, unsigned, int); 461typedef int (__sys_timerfd_create_t)(int, int); 462typedef int (__sys_timerfd_gettime_t)(int, struct itimerspec *); 463typedef int (__sys_timerfd_settime_t)(int, int, const struct itimerspec *, struct itimerspec *); 464typedef int (__sys_kcmp_t)(pid_t, pid_t, int, uintptr_t, uintptr_t); 465typedef int (__sys_getrlimitusage_t)(u_int, int, rlim_t *); | 1/* 2 * Public system call stubs provided by libsys. 3 * 4 * Do not use directly, include <libsys.h> instead. 5 * 6 * DO NOT EDIT-- this file is automatically @generated. 7 */ 8 --- 449 unchanged lines hidden (view full) --- 458typedef int (__sys_swapoff_t)(const char *, u_int); 459typedef int (__sys_kqueuex_t)(u_int); 460typedef int (__sys_membarrier_t)(int, unsigned, int); 461typedef int (__sys_timerfd_create_t)(int, int); 462typedef int (__sys_timerfd_gettime_t)(int, struct itimerspec *); 463typedef int (__sys_timerfd_settime_t)(int, int, const struct itimerspec *, struct itimerspec *); 464typedef int (__sys_kcmp_t)(pid_t, pid_t, int, uintptr_t, uintptr_t); 465typedef int (__sys_getrlimitusage_t)(u_int, int, rlim_t *); |
466typedef int (__sys_fchroot_t)(int); |
|
466 467void __sys_exit(int rval); 468int __sys_fork(void); 469ssize_t __sys_read(int fd, void * buf, size_t nbyte); 470ssize_t __sys_write(int fd, const void * buf, size_t nbyte); 471int __sys_open(const char * path, int flags, mode_t mode); 472int __sys_close(int fd); 473int __sys_wait4(int pid, int * status, int options, struct rusage * rusage); --- 384 unchanged lines hidden (view full) --- 858int __sys_swapoff(const char * name, u_int flags); 859int __sys_kqueuex(u_int flags); 860int __sys_membarrier(int cmd, unsigned flags, int cpu_id); 861int __sys_timerfd_create(int clockid, int flags); 862int __sys_timerfd_gettime(int fd, struct itimerspec * curr_value); 863int __sys_timerfd_settime(int fd, int flags, const struct itimerspec * new_value, struct itimerspec * old_value); 864int __sys_kcmp(pid_t pid1, pid_t pid2, int type, uintptr_t idx1, uintptr_t idx2); 865int __sys_getrlimitusage(u_int which, int flags, rlim_t * res); | 467 468void __sys_exit(int rval); 469int __sys_fork(void); 470ssize_t __sys_read(int fd, void * buf, size_t nbyte); 471ssize_t __sys_write(int fd, const void * buf, size_t nbyte); 472int __sys_open(const char * path, int flags, mode_t mode); 473int __sys_close(int fd); 474int __sys_wait4(int pid, int * status, int options, struct rusage * rusage); --- 384 unchanged lines hidden (view full) --- 859int __sys_swapoff(const char * name, u_int flags); 860int __sys_kqueuex(u_int flags); 861int __sys_membarrier(int cmd, unsigned flags, int cpu_id); 862int __sys_timerfd_create(int clockid, int flags); 863int __sys_timerfd_gettime(int fd, struct itimerspec * curr_value); 864int __sys_timerfd_settime(int fd, int flags, const struct itimerspec * new_value, struct itimerspec * old_value); 865int __sys_kcmp(pid_t pid1, pid_t pid2, int type, uintptr_t idx1, uintptr_t idx2); 866int __sys_getrlimitusage(u_int which, int flags, rlim_t * res); |
867int __sys_fchroot(int fd); |
|
866__END_DECLS 867 868#endif /* __LIBSYS_H_ */ | 868__END_DECLS 869 870#endif /* __LIBSYS_H_ */ |