diff options
author | dyson <dyson@FreeBSD.org> | 1997-06-16 00:29:36 +0000 |
---|---|---|
committer | dyson <dyson@FreeBSD.org> | 1997-06-16 00:29:36 +0000 |
commit | 1dcc2689e70c9a1ef6ab3fdc4cd16d3ccaa83c7d (patch) | |
tree | e5651aa05b6b49b6cd9fe5e8b7a44c6f4b09b6ee /sys/kern/syscalls.c | |
parent | 195ce8e1d024251eb78a9b82a8ab980dadb12efe (diff) | |
download | FreeBSD-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.c')
-rw-r--r-- | sys/kern/syscalls.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c index 4dda7cf..b824925 100644 --- a/sys/kern/syscalls.c +++ b/sys/kern/syscalls.c @@ -335,4 +335,16 @@ char *syscallnames[] = { "#311", /* 311 = setresuid */ "#312", /* 312 = setresgid */ "signanosleep", /* 313 = signanosleep */ + "aio_return", /* 314 = aio_return */ + "aio_suspend", /* 315 = aio_suspend */ + "aio_cancel", /* 316 = aio_cancel */ + "aio_error", /* 317 = aio_error */ + "aio_read", /* 318 = aio_read */ + "aio_write", /* 319 = aio_write */ + "lio_listio", /* 320 = lio_listio */ + "yield", /* 321 = yield */ + "thr_sleep", /* 322 = thr_sleep */ + "thr_wakeup", /* 323 = thr_wakeup */ + "mlockall", /* 324 = mlockall */ + "munlockall", /* 325 = munlockall */ }; |