Argument for swapctl cannot be const, since it gets loaded with swap
statistics.
This commit is contained in:
parent
e715d2ee98
commit
44285e060d
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: syscalls.master,v 1.145 2005/02/25 19:53:56 matt Exp $
|
||||
$NetBSD: syscalls.master,v 1.146 2005/05/29 21:07:49 christos Exp $
|
||||
|
||||
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
|
||||
|
||||
|
@ -561,7 +561,7 @@
|
|||
269 UNIMPL
|
||||
270 STD { int sys___posix_rename(const char *from, \
|
||||
const char *to); }
|
||||
271 STD { int sys_swapctl(int cmd, const void *arg, int misc); }
|
||||
271 STD { int sys_swapctl(int cmd, void *arg, int misc); }
|
||||
272 STD { int sys_getdents(int fd, char *buf, size_t count); }
|
||||
273 STD { int sys_minherit(void *addr, size_t len, \
|
||||
int inherit); }
|
||||
|
|
Loading…
Reference in New Issue