nuke mmap2, add mprotect
This commit is contained in:
parent
99ff14c9f3
commit
b3c32e7e6d
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: syscalls.master,v 1.9 2002/02/19 16:44:09 nathanw Exp $
|
||||
$NetBSD: syscalls.master,v 1.10 2002/03/22 15:19:43 christos Exp $
|
||||
|
||||
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
|
||||
|
||||
|
@ -248,7 +248,8 @@
|
|||
122 STD { int linux_sys_new_uname(struct linux_utsname *up); }
|
||||
123 UNIMPL modify_ldt
|
||||
124 UNIMPL adjtimex
|
||||
125 NOARGS { int sys_mprotect(caddr_t addr, int len, int prot); }
|
||||
125 STD { int linux_sys_mprotect(const void *start, \
|
||||
unsigned long len, int prot); }
|
||||
126 STD { int linux_sys_sigprocmask(int how, \
|
||||
const linux_old_sigset_t *set, \
|
||||
linux_old_sigset_t *oset); }
|
||||
|
@ -351,8 +352,7 @@
|
|||
190 STD { int linux_sys_ugetrlimit(int which, \
|
||||
struct rlimit *rlp); }
|
||||
191 UNIMPL /* unused */
|
||||
192 STD { off_t linux_sys_mmap2(void *addr, size_t len, \
|
||||
int prot, int flags, int fd, off_t offset); }
|
||||
192 UNIMPL mmap2
|
||||
193 UNIMPL truncate64
|
||||
194 UNIMPL ftruncate64
|
||||
195 UNIMPL stat64
|
||||
|
|
Loading…
Reference in New Issue