Sat Apr 2 21:01:32 2016 UTC ()
add wait6


(christos)
diff -r1.281 -r1.282 src/sys/kern/syscalls.master

cvs diff -r1.281 -r1.282 src/sys/kern/syscalls.master (expand / switch to unified diff)

--- src/sys/kern/syscalls.master 2015/12/03 02:51:00 1.281
+++ src/sys/kern/syscalls.master 2016/04/02 21:01:32 1.282
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1 $NetBSD: syscalls.master,v 1.281 2015/12/03 02:51:00 pgoyette Exp $ 1 $NetBSD: syscalls.master,v 1.282 2016/04/02 21:01:32 christos Exp $
2 2
3; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 3; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
4 4
5; NetBSD system call name/number "master" file. 5; NetBSD system call name/number "master" file.
6; (See syscalls.conf to see what it is processed into.) 6; (See syscalls.conf to see what it is processed into.)
7; 7;
8; Fields: number type [type-dependent ...] 8; Fields: number type [type-dependent ...]
9; number system call number, must be in order 9; number system call number, must be in order
10; type one of STD, OBSOL, UNIMPL, IGNORED, NODEF, NOARGS, or one of 10; type one of STD, OBSOL, UNIMPL, IGNORED, NODEF, NOARGS, or one of
11; the compatibility options defined in syscalls.conf. 11; the compatibility options defined in syscalls.conf.
12; 12;
13; Optional fields are specified after the type field 13; Optional fields are specified after the type field
14; (NOTE! they *must* be specified in this order): 14; (NOTE! they *must* be specified in this order):
@@ -969,13 +969,16 @@ @@ -969,13 +969,16 @@
969 struct timespec *timeout); } 969 struct timespec *timeout); }
970476 STD RUMP { int|sys||sendmmsg(int s, struct mmsghdr *mmsg, \ 970476 STD RUMP { int|sys||sendmmsg(int s, struct mmsghdr *mmsg, \
971 unsigned int vlen, unsigned int flags); } 971 unsigned int vlen, unsigned int flags); }
972477 NOERR RUMP { int|sys||clock_nanosleep(clockid_t clock_id, \ 972477 NOERR RUMP { int|sys||clock_nanosleep(clockid_t clock_id, \
973 int flags, const struct timespec *rqtp, \ 973 int flags, const struct timespec *rqtp, \
974 struct timespec *rmtp); } 974 struct timespec *rmtp); }
975478 STD { int|sys|60|_lwp_park(clockid_t clock_id, int flags, \ 975478 STD { int|sys|60|_lwp_park(clockid_t clock_id, int flags, \
976 const struct timespec *ts, lwpid_t unpark, \ 976 const struct timespec *ts, lwpid_t unpark, \
977 const void *hint, const void *unparkhint); } 977 const void *hint, const void *unparkhint); }
978479 NOERR RUMP { int|sys||posix_fallocate(int fd, int PAD, off_t pos, \ 978479 NOERR RUMP { int|sys||posix_fallocate(int fd, int PAD, off_t pos, \
979 off_t len); } 979 off_t len); }
980480 STD RUMP { int|sys||fdiscard(int fd, int PAD, off_t pos, \ 980480 STD RUMP { int|sys||fdiscard(int fd, int PAD, off_t pos, \
981 off_t len); } 981 off_t len); }
 982481 STD { int|sys||wait6(idtype_t idtype, id_t id, \
 983 int *status, int options, struct wrusage *wru, \
 984 siginfo_t *info); }