Changeset View
Changeset View
Standalone View
Standalone View
sys/sys/syscallsubr.h
Show First 20 Lines • Show All 75 Lines • ▼ Show 20 Lines | struct mmap_req { | ||||
vm_size_t mr_len; | vm_size_t mr_len; | ||||
int mr_prot; | int mr_prot; | ||||
int mr_flags; | int mr_flags; | ||||
int mr_fd; | int mr_fd; | ||||
off_t mr_pos; | off_t mr_pos; | ||||
mmap_check_fp_fn mr_check_fp_fn; | mmap_check_fp_fn mr_check_fp_fn; | ||||
}; | }; | ||||
uint64_t at2cnpflags(u_int at_flags, u_int mask); | |||||
int kern___getcwd(struct thread *td, char *buf, enum uio_seg bufseg, | int kern___getcwd(struct thread *td, char *buf, enum uio_seg bufseg, | ||||
size_t buflen, size_t path_max); | size_t buflen, size_t path_max); | ||||
int kern_abort2(struct thread *td, const char *why, int nargs, | int kern_abort2(struct thread *td, const char *why, int nargs, | ||||
void **uargs); | void **uargs); | ||||
int kern_accept(struct thread *td, int s, struct sockaddr **name, | int kern_accept(struct thread *td, int s, struct sockaddr **name, | ||||
socklen_t *namelen, struct file **fp); | socklen_t *namelen, struct file **fp); | ||||
int kern_accept4(struct thread *td, int s, struct sockaddr **name, | int kern_accept4(struct thread *td, int s, struct sockaddr **name, | ||||
socklen_t *namelen, int flags, struct file **fp); | socklen_t *namelen, int flags, struct file **fp); | ||||
▲ Show 20 Lines • Show All 222 Lines • ▼ Show 20 Lines | int kern_sigprocmask(struct thread *td, int how, | ||||
sigset_t *set, sigset_t *oset, int flags); | sigset_t *set, sigset_t *oset, int flags); | ||||
int kern_sigsuspend(struct thread *td, sigset_t mask); | int kern_sigsuspend(struct thread *td, sigset_t mask); | ||||
int kern_sigtimedwait(struct thread *td, sigset_t waitset, | int kern_sigtimedwait(struct thread *td, sigset_t waitset, | ||||
struct ksiginfo *ksi, struct timespec *timeout); | struct ksiginfo *ksi, struct timespec *timeout); | ||||
int kern_sigqueue(struct thread *td, pid_t pid, int signum, | int kern_sigqueue(struct thread *td, pid_t pid, int signum, | ||||
union sigval *value); | union sigval *value); | ||||
int kern_socket(struct thread *td, int domain, int type, int protocol); | int kern_socket(struct thread *td, int domain, int type, int protocol); | ||||
int kern_statat(struct thread *td, int flag, int fd, const char *path, | int kern_statat(struct thread *td, int flag, int fd, const char *path, | ||||
enum uio_seg pathseg, struct stat *sbp, | enum uio_seg pathseg, struct stat *sbp); | ||||
void (*hook)(struct vnode *vp, struct stat *sbp)); | |||||
int kern_specialfd(struct thread *td, int type, void *arg); | int kern_specialfd(struct thread *td, int type, void *arg); | ||||
int kern_statfs(struct thread *td, const char *path, enum uio_seg pathseg, | int kern_statfs(struct thread *td, const char *path, enum uio_seg pathseg, | ||||
struct statfs *buf); | struct statfs *buf); | ||||
int kern_symlinkat(struct thread *td, const char *path1, int fd, | int kern_symlinkat(struct thread *td, const char *path1, int fd, | ||||
const char *path2, enum uio_seg segflg); | const char *path2, enum uio_seg segflg); | ||||
int kern_sync(struct thread *td); | int kern_sync(struct thread *td); | ||||
int kern_ktimer_create(struct thread *td, clockid_t clock_id, | int kern_ktimer_create(struct thread *td, clockid_t clock_id, | ||||
struct sigevent *evp, int *timerid, int preset_id); | struct sigevent *evp, int *timerid, int preset_id); | ||||
▲ Show 20 Lines • Show All 41 Lines • Show Last 20 Lines |