diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2004-04-05 00:01:13 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2004-04-05 00:01:13 +0000 |
commit | d3c73c92759b3b0be9e84245c3197e360950fe14 (patch) | |
tree | a9366c0b65b03ca156e22a11f6f8611b84fd4efe /sys/compat/linux/syscalls.master | |
parent | 4ec6d48377fe0f224379d6a33a435d7a8834ac02 (diff) |
madvise works fine without translation, from Sam Smith.
Diffstat (limited to 'sys/compat/linux/syscalls.master')
-rw-r--r-- | sys/compat/linux/syscalls.master | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linux/syscalls.master b/sys/compat/linux/syscalls.master index cfbd0dd8aa7..be765312c51 100644 --- a/sys/compat/linux/syscalls.master +++ b/sys/compat/linux/syscalls.master @@ -1,4 +1,4 @@ - $OpenBSD: syscalls.master,v 1.45 2003/09/04 02:57:22 tedu Exp $ + $OpenBSD: syscalls.master,v 1.46 2004/04/05 00:01:12 tedu Exp $ ; $NetBSD: syscalls.master,v 1.15 1995/12/18 14:35:10 fvdl Exp $ ; @(#)syscalls.master 8.1 (Berkeley) 7/19/93 @@ -353,7 +353,7 @@ 216 NOARGS { int linux_sys_setfsgid(void); } 217 NOARGS { int linux_sys_pivot_root(void); } 218 NOARGS { int linux_sys_mincore(void); } -219 NOARGS { int linux_sys_madvise(void); } +219 NOARGS { int sys_madvise(void *addr, size_t len, int behav); } 220 STD { int linux_sys_getdents64(int fd, void *dirent, \ unsigned count); } 221 STD { int linux_sys_fcntl64(u_int fd, u_int cmd, \ |