diff options
author | 2011-07-07 06:15:47 +0000 | |
---|---|---|
committer | 2011-07-07 06:15:47 +0000 | |
commit | 184f833bc5bcae6afc7b40a6b0bf466cc19ca51b (patch) | |
tree | 183bdcc33fe5e18605d49c5362bf54e3c196da83 | |
parent | Return retcode in correct register. 'better commit that' kettenis@ (diff) | |
download | wireguard-openbsd-184f833bc5bcae6afc7b40a6b0bf466cc19ca51b.tar.xz wireguard-openbsd-184f833bc5bcae6afc7b40a6b0bf466cc19ca51b.zip |
Add more syscalls to the list.
This is in preparation of the robust syscalls, number 311 and 312, which
create a gap (between the syscall numbers we currently have) that the script
genearating the files doesn't allow.
Okay guenther@.
-rw-r--r-- | sys/compat/linux/syscalls.master | 47 |
1 files changed, 46 insertions, 1 deletions
diff --git a/sys/compat/linux/syscalls.master b/sys/compat/linux/syscalls.master index cb411636a9b..9a83e46d908 100644 --- a/sys/compat/linux/syscalls.master +++ b/sys/compat/linux/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.56 2011/07/07 01:19:39 tedu Exp $ + $OpenBSD: syscalls.master,v 1.57 2011/07/07 06:15:47 pirofti Exp $ ; $NetBSD: syscalls.master,v 1.15 1995/12/18 14:35:10 fvdl Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -412,3 +412,48 @@ 266 STD { int linux_sys_clock_getres(clockid_t which, \ struct l_timespec *tp); } 267 UNIMPL linux_sys_clock_nanosleep +268 UNIMPL linux_sys_statfs64 +269 UNIMPL linux_sys_fstatfs64 +270 UNIMPL linux_sys_tgkill +271 UNIMPL linux_sys_utimes +272 UNIMPL linux_sys_fadvise64_64 +273 UNIMPL linux_sys_vserver +274 UNIMPL linux_sys_mbind +275 UNIMPL linux_sys_get_mempolicy +276 UNIMPL linux_sys_set_mempolicy +277 UNIMPL linux_sys_mq_open +278 UNIMPL linux_sys_mq_unlink +279 UNIMPL linux_sys_mq_timedsend +280 UNIMPL linux_sys_mq_timedreceive +281 UNIMPL linux_sys_mq_notify +282 UNIMPL linux_sys_mq_getsetattr +283 UNIMPL linux_sys_sys_kexec_load +284 UNIMPL linux_sys_waitid +285 UNIMPL /* unused */ +286 UNIMPL linux_sys_add_key +287 UNIMPL linux_sys_request_key +288 UNIMPL linux_sys_keyctl +289 UNIMPL linux_sys_ioprio_set +290 UNIMPL linux_sys_ioprio_get +291 UNIMPL linux_sys_inotify_init +292 UNIMPL linux_sys_inotify_add_watch +293 UNIMPL linux_sys_inotify_rm_watch +294 UNIMPL linux_sys_migrate_pages +295 UNIMPL linux_sys_openalinux_sys_t +296 UNIMPL linux_sys_mkdirat +297 UNIMPL linux_sys_mknodat +298 UNIMPL linux_sys_fchownat +299 UNIMPL linux_sys_futimesat +300 UNIMPL linux_sys_fstatat64 +301 UNIMPL linux_sys_unlinkat +302 UNIMPL linux_sys_renameat +303 UNIMPL linux_sys_linkat +304 UNIMPL linux_sys_symlinkat +305 UNIMPL linux_sys_readlinkat +306 UNIMPL linux_sys_fchmodat +307 UNIMPL linux_sys_faccessat +308 UNIMPL linux_sys_pselect6 +309 UNIMPL linux_sys_ppoll +310 UNIMPL linux_sys_unshare +311 UNIMPL linux_sys_set_robust_list +312 UNIMPL linux_sys_get_robust_list |