diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-07-09 23:52:03 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-07-09 23:52:03 +0000 |
commit | c54c3ede23d618b62ce9da2e8bd64e8fcdd4b8e9 (patch) | |
tree | 84125ea516fb07e9ed3de64ae5419146b0d9e619 /sys/compat/netbsd/syscalls.master | |
parent | d8175701c7a9904a03dd89eef6cfcb40409c83eb (diff) |
Rename ostat -> stat43 to disambiguate from upcoming struct stat changes.
Idea from NetBSD, OK deraadt@
Diffstat (limited to 'sys/compat/netbsd/syscalls.master')
-rw-r--r-- | sys/compat/netbsd/syscalls.master | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/sys/compat/netbsd/syscalls.master b/sys/compat/netbsd/syscalls.master index 154af650df5..d0138644513 100644 --- a/sys/compat/netbsd/syscalls.master +++ b/sys/compat/netbsd/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.22 2004/05/28 18:28:14 tedu Exp $ +; $OpenBSD: syscalls.master,v 1.23 2004/07/09 23:52:02 millert Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -121,13 +121,11 @@ 35 NOARGS { int sys_fchflags(int fd, u_int flags); } 36 NOARGS { void sys_sync(void); } 37 NOARGS { int sys_kill(int pid, int signum); } -; XXX struct stat43 *ub vs. struct ostat *ub 38 STD { int compat_43_netbsd_sys_stat(char *path, \ - struct ostat *ub); } ostat + struct stat43 *ub); } stat43 39 NOARGS { pid_t sys_getppid(void); } -; XXX struct stat43 *ub vs. struct ostat *ub 40 STD { int compat_43_netbsd_sys_lstat(char *path, \ - struct ostat *ub); } olstat + struct stat43 *ub); } lstat43 41 NOARGS { int sys_dup(int fd); } 42 NOARGS { int sys_opipe(void); } 43 NOARGS { gid_t sys_getegid(void); } @@ -165,7 +163,7 @@ char **argp, char **envp); } 60 NOARGS { int sys_umask(int newmask); } 61 STD { int netbsd_sys_chroot(char *path); } -62 NOARGS { int sys_fstat(int fd, struct ostat *sb); } ofstat +62 NOARGS { int sys_fstat(int fd, struct stat43 *sb); } fstat43 63 NOARGS { int compat_43_sys_getkerninfo(int op, char *where, \ int *size, int arg); } ogetkerninfo 64 NOARGS { int compat_43_sys_getpagesize(void); } ogetpagesize |