summaryrefslogtreecommitdiff
path: root/sys/compat
diff options
context:
space:
mode:
authormatt <matt@NetBSD.org>2011-02-20 08:09:46 +0000
committermatt <matt@NetBSD.org>2011-02-20 08:09:46 +0000
commitda634d46ef417bdbecfe4e2d7acceebefd4b1f45 (patch)
tree8730612afb30c81892a8618238ed7fe808b478d4 /sys/compat
parent28431eeedd70227cb0644ef807b382f61550afef (diff)
Change some ints to longs (for LP64).
Diffstat (limited to 'sys/compat')
-rw-r--r--sys/compat/linux/arch/mips/syscalls.master14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/compat/linux/arch/mips/syscalls.master b/sys/compat/linux/arch/mips/syscalls.master
index d28a8c17166..4eff8fe7319 100644
--- a/sys/compat/linux/arch/mips/syscalls.master
+++ b/sys/compat/linux/arch/mips/syscalls.master
@@ -1,4 +1,4 @@
- $NetBSD: syscalls.master,v 1.38 2010/07/07 01:30:34 chs Exp $
+ $NetBSD: syscalls.master,v 1.39 2011/02/20 08:09:46 matt Exp $
; @(#)syscalls.master 8.1 (Berkeley) 7/19/93
@@ -88,8 +88,8 @@
23 NOARGS { int|sys||setuid(uid_t uid); }
24 NOARGS { uid_t|sys||getuid(void); }
25 STD { int|linux_sys||stime(linux_time_t *t); }
-26 STD { int|linux_sys||ptrace(int request, int pid, \
- int addr, int data); }
+26 STD { int|linux_sys||ptrace(long request, long pid, \
+ long addr, long data); }
27 STD { int|linux_sys||alarm(unsigned int secs); }
28 OBSOL ofstat
29 STD { int|linux_sys||pause(void); }
@@ -210,8 +210,8 @@
int options, struct rusage50 *rusage); }
115 STD { int|linux_sys||swapoff(const char *path); }
116 STD { int|linux_sys||sysinfo(struct linux_sysinfo *arg); }
-117 STD { int|linux_sys||ipc(int what, int a1, int a2, int a3, \
- void *ptr); }
+117 STD { int|linux_sys||ipc(int what, long a1, long a2, \
+ long a3, void *ptr); }
118 NOARGS { int|sys||fsync(int fd); }
119 STD { int|linux_sys||sigreturn(struct linux_sigframe *sf); }
120 STD { int|linux_sys||clone(int flags, void *stack, \
@@ -255,8 +255,8 @@
147 STD { int|linux_sys||cacheflush(void *addr, \
int bytes, int cache); }
148 UNIMPL cachectl
-149 STD { int|linux_sys||sysmips(int cmd, int arg1, \
- int arg2, int arg3); }
+149 STD { int|linux_sys||sysmips(long cmd, long arg1, \
+ long arg2, long arg3); }
150 UNIMPL
151 NOARGS { pid_t|sys||getsid(pid_t pid); }
152 STD { int|linux_sys||fdatasync(int fd); }