diff options
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r-- | sys/kern/syscalls.master | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 13ac5273a87..75fd31810e2 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.91 2009/03/12 06:56:13 guenther Exp $ +; $OpenBSD: syscalls.master,v 1.92 2009/06/03 14:45:54 jj Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -41,7 +41,7 @@ #include <sys/syscallargs.h> #include <sys/poll.h> #include <sys/event.h> -#include <xfs/xfs_pioctl.h> +#include <nnpfs/nnpfs_pioctl.h> ; Reserved/unimplemented system calls in the range 0-150 inclusive ; are reserved for use in future Berkeley releases. @@ -391,9 +391,13 @@ 206 STD { int sys_futimes(int fd, \ const struct timeval *tptr); } 207 STD { pid_t sys_getpgid(pid_t pid); } -208 STD { int sys_xfspioctl(int operation, char *a_pathP, \ +#ifdef NNPFS +208 STD { int sys_nnpfspioctl(int operation, char *a_pathP, \ int a_opcode, struct ViceIoctl *a_paramsP, \ int a_followSymlinks); } +#else +208 UNIMPL +#endif 209 UNIMPL ; ; Syscalls 210-219 are reserved for dynamically loaded syscalls |