summaryrefslogtreecommitdiff
path: root/sys/kern
diff options
context:
space:
mode:
authorMatthew Dempsky <matthew@cvs.openbsd.org>2011-07-07 23:46:47 +0000
committerMatthew Dempsky <matthew@cvs.openbsd.org>2011-07-07 23:46:47 +0000
commit6b2fe9fe16037d2aeed1a46f5896d9576d7106a8 (patch)
tree1527f01cb89f5bc687ab136a8a199a394eced248 /sys/kern
parenta6f6d4ae7f4c39fb7c43f0efb6e2ba80805bc886 (diff)
sync
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/init_sysent.c32
-rw-r--r--sys/kern/syscalls.c18
2 files changed, 46 insertions, 4 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index ac321d3f55d..1030881af56 100644
--- a/sys/kern/init_sysent.c
+++ b/sys/kern/init_sysent.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: init_sysent.c,v 1.122 2011/07/07 18:31:17 tedu Exp $ */
+/* $OpenBSD: init_sysent.c,v 1.123 2011/07/07 23:46:46 matthew Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.110 2011/07/07 18:30:50 tedu Exp
+ * created from; OpenBSD: syscalls.master,v 1.111 2011/07/07 23:45:00 matthew Exp
*/
#include <sys/param.h>
@@ -796,5 +796,33 @@ struct sysent sysent[] = {
sys_getrtable }, /* 311 = getrtable */
{ 4, s(struct sys_getdirentries_args), 0,
sys_getdirentries }, /* 312 = getdirentries */
+ { 4, s(struct sys_faccessat_args), 0,
+ sys_faccessat }, /* 313 = faccessat */
+ { 4, s(struct sys_fchmodat_args), 0,
+ sys_fchmodat }, /* 314 = fchmodat */
+ { 5, s(struct sys_fchownat_args), 0,
+ sys_fchownat }, /* 315 = fchownat */
+ { 4, s(struct sys_fstatat_args), 0,
+ sys_fstatat }, /* 316 = fstatat */
+ { 5, s(struct sys_linkat_args), 0,
+ sys_linkat }, /* 317 = linkat */
+ { 3, s(struct sys_mkdirat_args), 0,
+ sys_mkdirat }, /* 318 = mkdirat */
+ { 3, s(struct sys_mkfifoat_args), 0,
+ sys_mkfifoat }, /* 319 = mkfifoat */
+ { 4, s(struct sys_mknodat_args), 0,
+ sys_mknodat }, /* 320 = mknodat */
+ { 4, s(struct sys_openat_args), 0,
+ sys_openat }, /* 321 = openat */
+ { 4, s(struct sys_readlinkat_args), 0,
+ sys_readlinkat }, /* 322 = readlinkat */
+ { 4, s(struct sys_renameat_args), 0,
+ sys_renameat }, /* 323 = renameat */
+ { 3, s(struct sys_symlinkat_args), 0,
+ sys_symlinkat }, /* 324 = symlinkat */
+ { 3, s(struct sys_unlinkat_args), 0,
+ sys_unlinkat }, /* 325 = unlinkat */
+ { 4, s(struct sys_utimensat_args), 0,
+ sys_utimensat }, /* 326 = utimensat */
};
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index ab5f085e11b..9b92618a1b2 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscalls.c,v 1.123 2011/07/07 18:31:17 tedu Exp $ */
+/* $OpenBSD: syscalls.c,v 1.124 2011/07/07 23:46:46 matthew Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.110 2011/07/07 18:30:50 tedu Exp
+ * created from; OpenBSD: syscalls.master,v 1.111 2011/07/07 23:45:00 matthew Exp
*/
char *syscallnames[] = {
@@ -407,4 +407,18 @@ char *syscallnames[] = {
"setrtable", /* 310 = setrtable */
"getrtable", /* 311 = getrtable */
"getdirentries", /* 312 = getdirentries */
+ "faccessat", /* 313 = faccessat */
+ "fchmodat", /* 314 = fchmodat */
+ "fchownat", /* 315 = fchownat */
+ "fstatat", /* 316 = fstatat */
+ "linkat", /* 317 = linkat */
+ "mkdirat", /* 318 = mkdirat */
+ "mkfifoat", /* 319 = mkfifoat */
+ "mknodat", /* 320 = mknodat */
+ "openat", /* 321 = openat */
+ "readlinkat", /* 322 = readlinkat */
+ "renameat", /* 323 = renameat */
+ "symlinkat", /* 324 = symlinkat */
+ "unlinkat", /* 325 = unlinkat */
+ "utimensat", /* 326 = utimensat */
};