summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2006-06-14 19:52:53 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2006-06-14 19:52:53 +0000
commitd2de5de218868161bb4fb45ca9790efd16219583 (patch)
tree306eb8b3c5e8cf00897f4ef962189001e580ec9b
parentd0439941de3042e452a7a5bc85abf11fe39f4a37 (diff)
regen
-rw-r--r--sys/kern/init_sysent.c6
-rw-r--r--sys/kern/syscalls.c5
-rw-r--r--sys/sys/syscall.h9
-rw-r--r--sys/sys/syscallargs.h10
4 files changed, 21 insertions, 9 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c
index 22c5fd84d3c..365e2241972 100644
--- a/sys/kern/init_sysent.c
+++ b/sys/kern/init_sysent.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: init_sysent.c,v 1.95 2006/06/09 00:06:10 deraadt Exp $ */
+/* $OpenBSD: init_sysent.c,v 1.96 2006/06/14 19:52:52 otto Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.83 2006/06/09 00:05:54 deraadt Exp
+ * created from; OpenBSD: syscalls.master,v 1.84 2006/06/14 19:52:07 otto Exp
*/
#include <sys/param.h>
@@ -820,5 +820,7 @@ struct sysent sysent[] = {
#endif
{ 2, s(struct sys___getcwd_args),
sys___getcwd }, /* 304 = __getcwd */
+ { 2, s(struct sys_adjfreq_args),
+ sys_adjfreq }, /* 305 = adjfreq */
};
diff --git a/sys/kern/syscalls.c b/sys/kern/syscalls.c
index 56078ac8e3b..038d64b1728 100644
--- a/sys/kern/syscalls.c
+++ b/sys/kern/syscalls.c
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscalls.c,v 1.96 2006/06/09 00:06:10 deraadt Exp $ */
+/* $OpenBSD: syscalls.c,v 1.97 2006/06/14 19:52:52 otto Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.83 2006/06/09 00:05:54 deraadt Exp
+ * created from; OpenBSD: syscalls.master,v 1.84 2006/06/14 19:52:07 otto Exp
*/
char *syscallnames[] = {
@@ -422,4 +422,5 @@ char *syscallnames[] = {
"#303 (unimplemented)", /* 303 = unimplemented */
#endif
"__getcwd", /* 304 = __getcwd */
+ "adjfreq", /* 305 = adjfreq */
};
diff --git a/sys/sys/syscall.h b/sys/sys/syscall.h
index 6bcf4bdbbf1..8bb2144cb7f 100644
--- a/sys/sys/syscall.h
+++ b/sys/sys/syscall.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscall.h,v 1.94 2006/06/09 00:06:10 deraadt Exp $ */
+/* $OpenBSD: syscall.h,v 1.95 2006/06/14 19:52:52 otto Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.83 2006/06/09 00:05:54 deraadt Exp
+ * created from; OpenBSD: syscalls.master,v 1.84 2006/06/14 19:52:07 otto Exp
*/
/* syscall: "syscall" ret: "int" args: "int" "..." */
@@ -691,4 +691,7 @@
/* syscall: "__getcwd" ret: "int" args: "char *" "size_t" */
#define SYS___getcwd 304
-#define SYS_MAXSYSCALL 305
+/* syscall: "adjfreq" ret: "int" args: "const int64_t *" "int64_t *" */
+#define SYS_adjfreq 305
+
+#define SYS_MAXSYSCALL 306
diff --git a/sys/sys/syscallargs.h b/sys/sys/syscallargs.h
index 2f892739266..4997b89d42b 100644
--- a/sys/sys/syscallargs.h
+++ b/sys/sys/syscallargs.h
@@ -1,10 +1,10 @@
-/* $OpenBSD: syscallargs.h,v 1.96 2006/06/09 00:06:10 deraadt Exp $ */
+/* $OpenBSD: syscallargs.h,v 1.97 2006/06/14 19:52:52 otto Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from; OpenBSD: syscalls.master,v 1.83 2006/06/09 00:05:54 deraadt Exp
+ * created from; OpenBSD: syscalls.master,v 1.84 2006/06/14 19:52:07 otto Exp
*/
#ifdef syscallarg
@@ -1241,6 +1241,11 @@ struct sys___getcwd_args {
syscallarg(size_t) len;
};
+struct sys_adjfreq_args {
+ syscallarg(const int64_t *) freq;
+ syscallarg(int64_t *) oldfreq;
+};
+
/*
* System call prototypes.
*/
@@ -1559,3 +1564,4 @@ int sys_thrsigdivert(struct proc *, void *, register_t *);
#else
#endif
int sys___getcwd(struct proc *, void *, register_t *);
+int sys_adjfreq(struct proc *, void *, register_t *);