diff options
| author | bjh21 <bjh21@NetBSD.org> | 2002-01-15 10:21:46 +0000 |
|---|---|---|
| committer | bjh21 <bjh21@NetBSD.org> | 2002-01-15 10:21:46 +0000 |
| commit | 9f08648c7d7a51001d11081e009f47bdefbabdea (patch) | |
| tree | d57e32b88b5b7c6d2a623a0980a47f91b1fbb275 /sys/compat/linux | |
| parent | b02fbc487c29fa1bf58e0ad3b495097bfa908db3 (diff) | |
Shuffle uname calls around. It turns out we don't use the same names as
Linux does, so:
sys_olduname -> linux_sys_oldolduname
sys_uname -> linux_sys_olduname
sys_newuname -> linux_sys_uname
Diffstat (limited to 'sys/compat/linux')
| -rw-r--r-- | sys/compat/linux/arch/arm/syscalls.master | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sys/compat/linux/arch/arm/syscalls.master b/sys/compat/linux/arch/arm/syscalls.master index 48e69e40be3..66321a5744d 100644 --- a/sys/compat/linux/arch/arm/syscalls.master +++ b/sys/compat/linux/arch/arm/syscalls.master @@ -1,4 +1,4 @@ - $NetBSD: syscalls.master,v 1.1 2002/01/14 23:14:41 bjh21 Exp $ + $NetBSD: syscalls.master,v 1.2 2002/01/15 10:21:46 bjh21 Exp $ ; Derived from sys/compat/linux/arch/*/syscalls.master ; and from Linux 2.4.12 arch/arm/kernel/calls.S @@ -124,8 +124,8 @@ 56 OBSOL mpx 57 NOARGS { int sys_setpgid(int pid, int pgid); } 58 OBSOL ulimit -59 STD { int linux_sys_olduname(struct linux_old_utsname \ - *up); } +59 STD { int linux_sys_oldolduname( \ + struct linux_oldold_utsname *up); } 60 NOARGS { int sys_umask(int newmask); } 61 NOARGS { int sys_chroot(char *path); } 62 UNIMPL ustat @@ -200,7 +200,7 @@ 107 STD { int linux_sys_lstat(const char *path, \ struct linux_stat *sp); } 108 STD { int linux_sys_fstat(int fd, struct linux_stat *sp); } -109 STD { int linux_sys_uname(struct linux_utsname *up); } +109 STD { int linux_sys_olduname(struct linux_oldutsname *up); } 110 UNIMPL 111 UNIMPL vhangup 112 UNIMPL idle @@ -216,8 +216,7 @@ 120 STD { int linux_sys_clone(int flags, void *stack); } 121 STD { int linux_sys_setdomainname(char *domainname, \ int len); } -;122 STD { int linux_sys_new_uname(struct linux_utsname *up); } -122 UNIMPL new_uname +122 STD { int linux_sys_uname(struct linux_utsname *up); } 123 UNIMPL modify_ldt 124 UNIMPL adjtimex 125 NOARGS { int sys_mprotect(caddr_t addr, int len, int prot); } |
