diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-11-27 01:04:14 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-11-27 01:04:14 +0000 |
commit | dbd442ab5a5849ea3f13ed110ab51694289f6686 (patch) | |
tree | a21699a2a5a7e144feb51bbf72e709474b0c6d6e /sys/kern | |
parent | 1aa73db2e92b554667d3632da6e61350cc2c044b (diff) |
Add dummy msyscall(2) system call which is currently a noop. This will
be used by kernel and ld.so in the near future. Adding the system call
earlier will reduce the number of people who try to build through and
encounter agony.
ok kettenis guenther
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/syscalls.master | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 29b12d1e868..13b44d159b9 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.197 2019/08/13 07:09:21 anton Exp $ +; $OpenBSD: syscalls.master,v 1.198 2019/11/27 01:04:13 deraadt Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -105,7 +105,7 @@ 34 STD { int sys_chflags(const char *path, u_int flags); } 35 STD { int sys_fchflags(int fd, u_int flags); } 36 STD { void sys_sync(void); } -37 OBSOL o58_kill +37 STD { int sys_msyscall(void *addr, size_t len); } 38 STD { int sys_stat(const char *path, struct stat *ub); } 39 STD { pid_t sys_getppid(void); } 40 STD { int sys_lstat(const char *path, struct stat *ub); } |