_libsys.h (78101d437a92d539584795ffd2c46724da37e662) | _libsys.h (927f379180cd2f3d3460d2f3506d0059ea1c6cf8) |
---|---|
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#ifndef __LIBSYS_H_ --- 447 unchanged lines hidden (view full) --- 456typedef int (__sys_sched_getcpu_t)(void); 457typedef int (__sys_swapoff_t)(const char *, u_int); 458typedef int (__sys_kqueuex_t)(u_int); 459typedef int (__sys_membarrier_t)(int, unsigned, int); 460typedef int (__sys_timerfd_create_t)(int, int); 461typedef int (__sys_timerfd_gettime_t)(int, struct itimerspec *); 462typedef int (__sys_timerfd_settime_t)(int, int, const struct itimerspec *, struct itimerspec *); 463typedef int (__sys_kcmp_t)(pid_t, pid_t, int, uintptr_t, uintptr_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#ifndef __LIBSYS_H_ --- 447 unchanged lines hidden (view full) --- 456typedef int (__sys_sched_getcpu_t)(void); 457typedef int (__sys_swapoff_t)(const char *, u_int); 458typedef int (__sys_kqueuex_t)(u_int); 459typedef int (__sys_membarrier_t)(int, unsigned, int); 460typedef int (__sys_timerfd_create_t)(int, int); 461typedef int (__sys_timerfd_gettime_t)(int, struct itimerspec *); 462typedef int (__sys_timerfd_settime_t)(int, int, const struct itimerspec *, struct itimerspec *); 463typedef int (__sys_kcmp_t)(pid_t, pid_t, int, uintptr_t, uintptr_t); |
464typedef int (__sys_getrlimitusage_t)(u_int, int, rlim_t *); |
|
464 465void __sys_exit(int rval); 466int __sys_fork(void); 467ssize_t __sys_read(int fd, void * buf, size_t nbyte); 468ssize_t __sys_write(int fd, const void * buf, size_t nbyte); 469int __sys_open(const char * path, int flags, mode_t mode); 470int __sys_close(int fd); 471int __sys_wait4(int pid, int * status, int options, struct rusage * rusage); --- 383 unchanged lines hidden (view full) --- 855int __sys_sched_getcpu(void); 856int __sys_swapoff(const char * name, u_int flags); 857int __sys_kqueuex(u_int flags); 858int __sys_membarrier(int cmd, unsigned flags, int cpu_id); 859int __sys_timerfd_create(int clockid, int flags); 860int __sys_timerfd_gettime(int fd, struct itimerspec * curr_value); 861int __sys_timerfd_settime(int fd, int flags, const struct itimerspec * new_value, struct itimerspec * old_value); 862int __sys_kcmp(pid_t pid1, pid_t pid2, int type, uintptr_t idx1, uintptr_t idx2); | 465 466void __sys_exit(int rval); 467int __sys_fork(void); 468ssize_t __sys_read(int fd, void * buf, size_t nbyte); 469ssize_t __sys_write(int fd, const void * buf, size_t nbyte); 470int __sys_open(const char * path, int flags, mode_t mode); 471int __sys_close(int fd); 472int __sys_wait4(int pid, int * status, int options, struct rusage * rusage); --- 383 unchanged lines hidden (view full) --- 856int __sys_sched_getcpu(void); 857int __sys_swapoff(const char * name, u_int flags); 858int __sys_kqueuex(u_int flags); 859int __sys_membarrier(int cmd, unsigned flags, int cpu_id); 860int __sys_timerfd_create(int clockid, int flags); 861int __sys_timerfd_gettime(int fd, struct itimerspec * curr_value); 862int __sys_timerfd_settime(int fd, int flags, const struct itimerspec * new_value, struct itimerspec * old_value); 863int __sys_kcmp(pid_t pid1, pid_t pid2, int type, uintptr_t idx1, uintptr_t idx2); |
864int __sys_getrlimitusage(u_int which, int flags, rlim_t * res); |
|
863__END_DECLS 864 865#endif /* __LIBSYS_H_ */ | 865__END_DECLS 866 867#endif /* __LIBSYS_H_ */ |