diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-19 15:41:08 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-19 15:41:08 +0000 |
commit | 93befcf57380eafe63e453595cc78ad0521d87b6 (patch) | |
tree | 697ca9d86425c03e07afb367d2bde63a804fdf56 /sys/compat/linux/linux_syscalls.c | |
parent | c570f8073ee1d4f21ec80a9f0709816a1dfa8969 (diff) |
from fvdl; add msync(), readv() and writev()
Diffstat (limited to 'sys/compat/linux/linux_syscalls.c')
-rw-r--r-- | sys/compat/linux/linux_syscalls.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_syscalls.c b/sys/compat/linux/linux_syscalls.c index 237014c11bf..5062a0fb5bf 100644 --- a/sys/compat/linux/linux_syscalls.c +++ b/sys/compat/linux/linux_syscalls.c @@ -2,7 +2,7 @@ * System call names. * * DO NOT EDIT-- this file is automatically generated. - * created from NetBSD: syscalls.master,v 1.13 1995/10/07 06:27:15 mycroft Exp + * created from NetBSD: syscalls.master,v 1.15 1995/12/18 14:35:10 fvdl Exp */ char *linux_syscallnames[] = { @@ -162,4 +162,7 @@ char *linux_syscallnames[] = { "getdents", /* 141 = getdents */ "select", /* 142 = select */ "flock", /* 143 = flock */ + "msync", /* 144 = msync */ + "readv", /* 145 = readv */ + "writev", /* 146 = writev */ }; |