diff options
author | 2000-04-04 05:32:17 +0000 | |
---|---|---|
committer | 2000-04-04 05:32:17 +0000 | |
commit | 81bd3c8246e54d9c584e7d5bfcc197173f084010 (patch) | |
tree | 0579c9b1362bc5f870f2634439d78d1ed60a4244 /sys/compat/linux/linux_sysent.c | |
parent | Implement Linux's pread(2) and pwrite(2). (diff) | |
download | wireguard-openbsd-81bd3c8246e54d9c584e7d5bfcc197173f084010.tar.xz wireguard-openbsd-81bd3c8246e54d9c584e7d5bfcc197173f084010.zip |
sync.
Diffstat (limited to 'sys/compat/linux/linux_sysent.c')
-rw-r--r-- | sys/compat/linux/linux_sysent.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/compat/linux/linux_sysent.c b/sys/compat/linux/linux_sysent.c index 3125ac079d8..132e642421c 100644 --- a/sys/compat/linux/linux_sysent.c +++ b/sys/compat/linux/linux_sysent.c @@ -1,10 +1,10 @@ -/* $OpenBSD: linux_sysent.c,v 1.20 2000/03/28 06:36:29 jasoni Exp $ */ +/* $OpenBSD: linux_sysent.c,v 1.21 2000/04/04 05:32:17 jasoni Exp $ */ /* * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from OpenBSD: syscalls.master,v 1.20 2000/03/28 06:35:57 jasoni Exp + * created from OpenBSD: syscalls.master,v 1.21 2000/04/04 05:31:50 jasoni Exp */ #include <sys/param.h> @@ -395,10 +395,10 @@ struct sysent linux_sysent[] = { sys_nosys }, /* 178 = unimplemented rt_queueinfo */ { 2, s(struct linux_sys_rt_sigsuspend_args), linux_sys_rt_sigsuspend }, /* 179 = rt_sigsuspend */ - { 0, 0, - sys_nosys }, /* 180 = unimplemented pread */ - { 0, 0, - sys_nosys }, /* 181 = unimplemented pwrite */ + { 4, s(struct linux_sys_pread_args), + linux_sys_pread }, /* 180 = pread */ + { 4, s(struct linux_sys_pwrite_args), + linux_sys_pwrite }, /* 181 = pwrite */ { 3, s(struct linux_sys_chown_args), linux_sys_chown }, /* 182 = chown */ { 2, s(struct linux_sys_getcwd_args), |