diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-16 17:14:40 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-05-16 17:14:40 +0000 |
commit | d081888ede32893d5dfa6a13f09405aa730c9092 (patch) | |
tree | df2c5452e4612103cc5e3b507980de79f926318b /sys/compat/netbsd | |
parent | a298e9ff9d4b9418b1b5b64c70a04ed9774e676d (diff) |
Create COMPAT_25 and move ogetfsstat, ostatfs and ostatfs into it.
Create COMPAT_23 and move __osemctl, omsgctl, oshmctl there.
Diffstat (limited to 'sys/compat/netbsd')
-rw-r--r-- | sys/compat/netbsd/syscalls.master | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/sys/compat/netbsd/syscalls.master b/sys/compat/netbsd/syscalls.master index 09d86b04322..743b170be70 100644 --- a/sys/compat/netbsd/syscalls.master +++ b/sys/compat/netbsd/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.11 2000/05/01 23:10:58 deraadt Exp $ +; $OpenBSD: syscalls.master,v 1.12 2001/05/16 17:14:38 millert Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -81,8 +81,8 @@ 16 STD { int netbsd_sys_chown(char *path, uid_t uid, \ gid_t gid); } 17 NOARGS { int sys_obreak(char *nsize); } break -18 NOARGS { int sys_ogetfsstat(struct statfs *buf, long bufsize, \ - int flags); } +18 NOARGS { int compat_25_sys_getfsstat(struct ostatfs *buf, \ + long bufsize, int flags); } 19 NOARGS { long sys_lseek(int fd, long offset, int whence); } \ olseek 20 NOARGS { pid_t sys_getpid(void); } @@ -313,8 +313,10 @@ #endif 156 NOARGS { int compat_43_sys_getdirentries(int fd, char *buf, \ u_int count, long *basep); } ogetdirentries -157 NOARGS { int sys_ostatfs(char *path, struct ostatfs *buf); } -158 NOARGS { int sys_ofstatfs(int fd, struct ostatfs *buf); } +157 NOARGS { int compat_25_sys_statfs(char *path, \ + struct ostatfs *buf); } +158 NOARGS { int compat_25_sys_fstatfs(int fd, \ + struct ostatfs *buf); } 159 UNIMPL 160 UNIMPL #if defined(NFSCLIENT) || defined(NFSSERVER) |