diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 1998-08-30 18:04:22 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 1998-08-30 18:04:22 +0000 |
commit | 24edf0b4002ce3faf3fa9ca9c4398bfd9181fd87 (patch) | |
tree | 0efb9289e5556ef5c312f1dd8c26154210f32aa4 | |
parent | 7b4d26c0c5f0732bec9e3e451ad6aa043c280ec9 (diff) |
glue for xfspioctl syscall
-rw-r--r-- | sys/kern/syscalls.master | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 79e2889e3dc..9666cc159ef 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.28 1998/06/12 08:31:11 deraadt Exp $ +; $OpenBSD: syscalls.master,v 1.29 1998/08/30 18:04:21 art Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -391,7 +391,13 @@ 206 STD { int sys_futimes(int fd, \ const struct timeval *tptr); } 207 STD { int sys_getpgid(pid_t pid); } -208 UNIMPL +#ifdef XFS +208 STD { int sys_xfspioctl(int operation, char * a_pathP, \ + int a_opcode, struct ViceIoctl *a_paramsP, \ + int a_followSymlinks); } +#else +208 UNIMPL pioctl +#endif 209 UNIMPL ; ; Syscalls 210-219 are reserved for dynamically loaded syscalls |