diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-04-20 20:48:28 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1997-04-20 20:48:28 +0000 |
commit | fad6741b10486fafda3e816dfc7be5200e619504 (patch) | |
tree | e62b243968b99a970d48d8923d0d69bc83c1f493 /sys/kern/syscalls.master | |
parent | d97942d395d5a6f8c790099b0e04d954b979b496 (diff) |
Add new POSIX 1003.1b related syscalls; from pk@NetBSD
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r-- | sys/kern/syscalls.master | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 16f4245b2d0..4c0d4a2c79d 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.13 1997/01/26 05:18:27 downsj Exp $ + $OpenBSD: syscalls.master,v 1.14 1997/04/20 20:48:27 tholo Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -434,15 +434,19 @@ 230 UNIMPL shmdt 231 UNIMPL shmget #endif -232 UNIMPL -233 UNIMPL -234 UNIMPL -235 UNIMPL -236 UNIMPL -237 UNIMPL -238 UNIMPL -239 UNIMPL -240 UNIMPL +232 STD { int sys_clock_gettime(clockid_t clock_id, \ + struct timespec *tp); } +233 STD { int sys_clock_settime(clockid_t clock_id, \ + const struct timespec *tp); } +234 STD { int sys_clock_getres(clockid_t clock_id, \ + struct timespec *tp); } +235 UNIMPL timer_create +236 UNIMPL timer_delete +237 UNIMPL timer_settime +238 UNIMPL timer_gettime +239 UNIMPL timer_getoverrun +240 STD { int sys_nanosleep(const struct timespec *rqtp, \ + struct timespec *rmtp); } 241 UNIMPL 242 UNIMPL 243 UNIMPL |