Module Name: src
Committed By: christos
Date: Sat May 5 19:49:13 UTC 2012
Modified Files:
src/sys/kern: init_sysent.c syscalls.c
src/sys/sys: syscall.h syscallargs.h
Log Message:
regen
To generate a diff of this commit:
cvs rdiff -u -r1.264 -r1.265 src/sys/kern/init_sysent.c
cvs rdiff -u -r1.255 -r1.256 src/sys/kern/syscalls.c
cvs rdiff -u -r1.251 -r1.252 src/sys/sys/syscall.h
cvs rdiff -u -r1.234 -r1.235 src/sys/sys/syscallargs.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/kern/init_sysent.c
diff -u src/sys/kern/init_sysent.c:1.264 src/sys/kern/init_sysent.c:1.265
--- src/sys/kern/init_sysent.c:1.264 Thu Mar 8 16:59:30 2012
+++ src/sys/kern/init_sysent.c Sat May 5 15:49:13 2012
@@ -1,14 +1,14 @@
-/* $NetBSD: init_sysent.c,v 1.264 2012/03/08 21:59:30 joerg Exp $ */
+/* $NetBSD: init_sysent.c,v 1.265 2012/05/05 19:49:13 christos Exp $ */
/*
* System call switch table.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.258 2012/03/08 21:55:45 joerg Exp
+ * created from NetBSD: syscalls.master,v 1.259 2012/05/05 19:37:37 christos Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.264 2012/03/08 21:59:30 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: init_sysent.c,v 1.265 2012/05/05 19:49:13 christos Exp $");
#include "opt_modular.h"
#include "opt_ntp.h"
@@ -550,8 +550,8 @@ struct sysent sysent[] = {
(sy_call_t *)sys_reboot }, /* 208 = reboot */
{ ns(struct sys_poll_args), 0,
(sy_call_t *)sys_poll }, /* 209 = poll */
- { 0, 0, 0,
- sys_nosys }, /* 210 = unimplemented */
+ { ns(struct sys_afssys_args), 0,
+ (sy_call_t *)sys_nomodule }, /* 210 = afssys */
{ 0, 0, 0,
sys_nosys }, /* 211 = unimplemented */
{ 0, 0, 0,
Index: src/sys/kern/syscalls.c
diff -u src/sys/kern/syscalls.c:1.255 src/sys/kern/syscalls.c:1.256
--- src/sys/kern/syscalls.c:1.255 Thu Mar 8 16:59:30 2012
+++ src/sys/kern/syscalls.c Sat May 5 15:49:13 2012
@@ -1,14 +1,14 @@
-/* $NetBSD: syscalls.c,v 1.255 2012/03/08 21:59:30 joerg Exp $ */
+/* $NetBSD: syscalls.c,v 1.256 2012/05/05 19:49:13 christos Exp $ */
/*
* System call names.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.258 2012/03/08 21:55:45 joerg Exp
+ * created from NetBSD: syscalls.master,v 1.259 2012/05/05 19:37:37 christos Exp
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.255 2012/03/08 21:59:30 joerg Exp $");
+__KERNEL_RCSID(0, "$NetBSD: syscalls.c,v 1.256 2012/05/05 19:49:13 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_modular.h"
@@ -250,7 +250,7 @@ const char *const syscallnames[] = {
/* 207 */ "getpgid",
/* 208 */ "reboot",
/* 209 */ "poll",
- /* 210 */ "#210 (unimplemented)",
+ /* 210 */ "afssys",
/* 211 */ "#211 (unimplemented)",
/* 212 */ "#212 (unimplemented)",
/* 213 */ "#213 (unimplemented)",
Index: src/sys/sys/syscall.h
diff -u src/sys/sys/syscall.h:1.251 src/sys/sys/syscall.h:1.252
--- src/sys/sys/syscall.h:1.251 Thu Mar 8 16:59:31 2012
+++ src/sys/sys/syscall.h Sat May 5 15:49:13 2012
@@ -1,10 +1,10 @@
-/* $NetBSD: syscall.h,v 1.251 2012/03/08 21:59:31 joerg Exp $ */
+/* $NetBSD: syscall.h,v 1.252 2012/05/05 19:49:13 christos Exp $ */
/*
* System call numbers.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.258 2012/03/08 21:55:45 joerg Exp
+ * created from NetBSD: syscalls.master,v 1.259 2012/05/05 19:37:37 christos Exp
*/
#ifndef _SYS_SYSCALL_H_
@@ -589,6 +589,9 @@
/* syscall: "poll" ret: "int" args: "struct pollfd *" "u_int" "int" */
#define SYS_poll 209
+/* syscall: "afssys" ret: "int" args: "long" "long" "long" "long" "long" "long" "long" */
+#define SYS_afssys 210
+
#if defined(SYSVSEM) || !defined(_KERNEL_OPT)
/* syscall: "compat_14___semctl" ret: "int" args: "int" "int" "int" "union __semun *" */
#define SYS_compat_14___semctl 220
Index: src/sys/sys/syscallargs.h
diff -u src/sys/sys/syscallargs.h:1.234 src/sys/sys/syscallargs.h:1.235
--- src/sys/sys/syscallargs.h:1.234 Thu Mar 8 16:59:32 2012
+++ src/sys/sys/syscallargs.h Sat May 5 15:49:13 2012
@@ -1,10 +1,10 @@
-/* $NetBSD: syscallargs.h,v 1.234 2012/03/08 21:59:32 joerg Exp $ */
+/* $NetBSD: syscallargs.h,v 1.235 2012/05/05 19:49:13 christos Exp $ */
/*
* System call argument lists.
*
* DO NOT EDIT-- this file is automatically generated.
- * created from NetBSD: syscalls.master,v 1.258 2012/03/08 21:55:45 joerg Exp
+ * created from NetBSD: syscalls.master,v 1.259 2012/05/05 19:37:37 christos Exp
*/
#ifndef _SYS_SYSCALLARGS_H_
@@ -1121,6 +1121,17 @@ struct sys_poll_args {
syscallarg(int) timeout;
};
check_syscall_args(sys_poll)
+
+struct sys_afssys_args {
+ syscallarg(long) id;
+ syscallarg(long) a1;
+ syscallarg(long) a2;
+ syscallarg(long) a3;
+ syscallarg(long) a4;
+ syscallarg(long) a5;
+ syscallarg(long) a6;
+};
+check_syscall_args(sys_afssys)
#if defined(SYSVSEM) || !defined(_KERNEL_OPT)
struct compat_14_sys___semctl_args {
@@ -3088,6 +3099,8 @@ int sys_reboot(struct lwp *, const struc
int sys_poll(struct lwp *, const struct sys_poll_args *, register_t *);
+int sys_afssys(struct lwp *, const struct sys_afssys_args *, register_t *);
+
#if defined(SYSVSEM) || !defined(_KERNEL_OPT)
int compat_14_sys___semctl(struct lwp *, const struct compat_14_sys___semctl_args *, register_t *);