summaryrefslogtreecommitdiff
path: root/sys/compat/linux/linux_syscalls.c
diff options
context:
space:
mode:
authorfvdl <fvdl@NetBSD.org>1995-03-05 23:23:37 +0000
committerfvdl <fvdl@NetBSD.org>1995-03-05 23:23:37 +0000
commit182c23c8bc953f735285f652e318b26abdb110d5 (patch)
treec412b378bbe811dee6c821046621ac00649e418e /sys/compat/linux/linux_syscalls.c
parent6c30f4a8925eee67df33399ec86d46da08c9612e (diff)
Added a few more system calls.
More consistent alternate root file semantics throughout.
Diffstat (limited to 'sys/compat/linux/linux_syscalls.c')
-rw-r--r--sys/compat/linux/linux_syscalls.c25
1 files changed, 14 insertions, 11 deletions
diff --git a/sys/compat/linux/linux_syscalls.c b/sys/compat/linux/linux_syscalls.c
index 54cd4a83555..fb863cc982b 100644
--- a/sys/compat/linux/linux_syscalls.c
+++ b/sys/compat/linux/linux_syscalls.c
@@ -16,13 +16,13 @@ char *linux_syscallnames[] = {
"linux_waitpid", /* 7 = linux_waitpid */
"linux_creat", /* 8 = linux_creat */
"link", /* 9 = link */
- "unlink", /* 10 = unlink */
+ "linux_unlink", /* 10 = linux_unlink */
"linux_execve", /* 11 = linux_execve */
- "chdir", /* 12 = chdir */
+ "linux_chdir", /* 12 = linux_chdir */
"linux_time", /* 13 = linux_time */
- "mknod", /* 14 = mknod */
- "chmod", /* 15 = chmod */
- "chown", /* 16 = chown */
+ "linux_mknod", /* 14 = linux_mknod */
+ "linux_chmod", /* 15 = linux_chmod */
+ "linux_chown", /* 16 = linux_chown */
"linux_break", /* 17 = linux_break */
"#18 (obsolete linux_ostat)", /* 18 = obsolete linux_ostat */
"compat_43_lseek", /* 19 = compat_43_lseek */
@@ -44,9 +44,9 @@ char *linux_syscallnames[] = {
"#35 (unimplemented linux_ftime)", /* 35 = unimplemented linux_ftime */
"sync", /* 36 = sync */
"linux_kill", /* 37 = linux_kill */
- "rename", /* 38 = rename */
- "mkdir", /* 39 = mkdir */
- "rmdir", /* 40 = rmdir */
+ "linux_rename", /* 38 = linux_rename */
+ "linux_mkdir", /* 39 = linux_mkdir */
+ "linux_rmdir", /* 40 = linux_rmdir */
"dup", /* 41 = dup */
"linux_pipe", /* 42 = linux_pipe */
"linux_times", /* 43 = linux_times */
@@ -89,16 +89,16 @@ char *linux_syscallnames[] = {
"getgroups", /* 80 = getgroups */
"setgroups", /* 81 = setgroups */
"linux_select", /* 82 = linux_select */
- "symlink", /* 83 = symlink */
+ "linux_symlink", /* 83 = linux_symlink */
"compat_43_lstat", /* 84 = compat_43_lstat */
- "readlink", /* 85 = readlink */
+ "linux_readlink", /* 85 = linux_readlink */
"linux_uselib", /* 86 = linux_uselib */
"swapon", /* 87 = swapon */
"reboot", /* 88 = reboot */
"linux_readdir", /* 89 = linux_readdir */
"linux_mmap", /* 90 = linux_mmap */
"munmap", /* 91 = munmap */
- "compat_43_truncate", /* 92 = compat_43_truncate */
+ "linux_truncate", /* 92 = linux_truncate */
"compat_43_ftruncate", /* 93 = compat_43_ftruncate */
"fchmod", /* 94 = fchmod */
"fchown", /* 95 = fchown */
@@ -144,4 +144,7 @@ char *linux_syscallnames[] = {
"#135 (unimplemented linux_sysfs)", /* 135 = unimplemented linux_sysfs */
"#136 (unimplemented linux_personality)", /* 136 = unimplemented linux_personality */
"#137 (unimplemented linux_afs_syscall)", /* 137 = unimplemented linux_afs_syscall */
+ "#138 (unimplemented linux_setfsuid)", /* 138 = unimplemented linux_setfsuid */
+ "#139 (unimplemented linux_getfsuid)", /* 139 = unimplemented linux_getfsuid */
+ "linux_llseek", /* 140 = linux_llseek */
};