summaryrefslogtreecommitdiffstats
path: root/sys/kern/syscalls.master
diff options
context:
space:
mode:
authordyson <dyson@FreeBSD.org>1997-06-16 00:29:36 +0000
committerdyson <dyson@FreeBSD.org>1997-06-16 00:29:36 +0000
commit1dcc2689e70c9a1ef6ab3fdc4cd16d3ccaa83c7d (patch)
treee5651aa05b6b49b6cd9fe5e8b7a44c6f4b09b6ee /sys/kern/syscalls.master
parent195ce8e1d024251eb78a9b82a8ab980dadb12efe (diff)
downloadFreeBSD-src-1dcc2689e70c9a1ef6ab3fdc4cd16d3ccaa83c7d.zip
FreeBSD-src-1dcc2689e70c9a1ef6ab3fdc4cd16d3ccaa83c7d.tar.gz
Modifications to existing files to support the initial AIO/LIO and
kernel based threading support.
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r--sys/kern/syscalls.master14
1 files changed, 13 insertions, 1 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 82ceb9d..d944470f1 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1,4 +1,4 @@
- $Id: syscalls.master,v 1.38 1997/05/08 14:07:11 peter Exp $
+ $Id: syscalls.master,v 1.39 1997/06/01 08:52:38 peter Exp $
; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94
;
; System call name/number master file.
@@ -462,3 +462,15 @@
312 UNIMPL NOHIDE setresgid
313 STD BSD { int signanosleep(const struct timespec *rqtp, \
struct timespec *rmtp, sigset_t *mask); }
+314 STD BSD { int aio_return(struct aiocb *aiocbp); }
+315 STD BSD { int aio_suspend(struct aiocb * const * aiocbp, int nent, const struct timespec *timeout); }
+316 STD BSD { int aio_cancel(int fd, struct aiocb *aiocbp); }
+317 STD BSD { int aio_error(struct aiocb *aiocbp); }
+318 STD BSD { int aio_read(struct aiocb *aiocbp); }
+319 STD BSD { int aio_write(struct aiocb *aiocbp); }
+320 STD BSD { int lio_listio(int mode, struct aiocb * const *acb_list, int nent, struct sigevent *sig); }
+321 STD BSD { int yield(void); }
+322 STD BSD { int thr_sleep(const struct timespec *timeout); }
+323 STD BSD { int thr_wakeup(pid_t pid); }
+324 STD BSD { int mlockall(int how); }
+325 STD BSD { int munlockall(void); }
OpenPOWER on IntegriCloud