diff options
author | 2001-11-27 19:34:20 +0000 | |
---|---|---|
committer | 2001-11-27 19:34:20 +0000 | |
commit | 1b73bb9733498ba2298141f60bccc74c1872ac81 (patch) | |
tree | b26fa2338a251fa874401f67a37935a01df7ab1f | |
parent | Fix uninitialized variable introduced in rev 1.40; found by lebel@ (diff) | |
download | wireguard-openbsd-1b73bb9733498ba2298141f60bccc74c1872ac81.tar.xz wireguard-openbsd-1b73bb9733498ba2298141f60bccc74c1872ac81.zip |
Add clock_gettime. -moj ok art@
-rw-r--r-- | sys/compat/freebsd/syscalls.master | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/compat/freebsd/syscalls.master b/sys/compat/freebsd/syscalls.master index dcc7d6d6d05..d85b265c851 100644 --- a/sys/compat/freebsd/syscalls.master +++ b/sys/compat/freebsd/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.15 2001/02/02 19:45:09 tholo Exp $ + $OpenBSD: syscalls.master,v 1.16 2001/11/27 19:34:20 maja Exp $ ; $NetBSD: syscalls.master,v 1.3 1995/10/10 18:28:40 mycroft Exp $ ; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -442,7 +442,8 @@ 230 UNIMPL sys_shmdt 231 UNIMPL sys_shmget #endif -232 UNIMPL +232 NOARGS { int sys_clock_gettime(clockid_t clock_id, \ + struct timespec *tp); } 233 UNIMPL 234 UNIMPL 235 UNIMPL timer_create |