svn commit: r184821 - user/dfr/gssapi/6/sys/sys
Doug Rabson
dfr at FreeBSD.org
Mon Nov 10 10:08:05 PST 2008
Author: dfr
Date: Mon Nov 10 18:08:05 2008
New Revision: 184821
URL: http://svn.freebsd.org/changeset/base/184821
Log:
Regen
Modified:
user/dfr/gssapi/6/sys/sys/syscall.h
user/dfr/gssapi/6/sys/sys/syscall.mk
user/dfr/gssapi/6/sys/sys/sysproto.h
Modified: user/dfr/gssapi/6/sys/sys/syscall.h
==============================================================================
--- user/dfr/gssapi/6/sys/sys/syscall.h Mon Nov 10 18:07:08 2008 (r184820)
+++ user/dfr/gssapi/6/sys/sys/syscall.h Mon Nov 10 18:08:05 2008 (r184821)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/kern/syscalls.master,v 1.198.2.6 2008/04/24 10:46:19 dfr Exp
+ * created from FreeBSD: user/dfr/gssapi/6/sys/kern/syscalls.master 184813 2008-11-10 16:23:24Z dfr
*/
#define SYS_syscall 0
@@ -372,4 +372,5 @@
#define SYS_auditctl 453
#define SYS__umtx_op 454
#define SYS_thr_new 455
-#define SYS_MAXSYSCALL 456
+#define SYS_gssd_syscall 505
+#define SYS_MAXSYSCALL 506
Modified: user/dfr/gssapi/6/sys/sys/syscall.mk
==============================================================================
--- user/dfr/gssapi/6/sys/sys/syscall.mk Mon Nov 10 18:07:08 2008 (r184820)
+++ user/dfr/gssapi/6/sys/sys/syscall.mk Mon Nov 10 18:08:05 2008 (r184821)
@@ -1,7 +1,7 @@
# FreeBSD system call names.
# DO NOT EDIT-- this file is automatically generated.
# $FreeBSD$
-# created from FreeBSD: src/sys/kern/syscalls.master,v 1.198.2.6 2008/04/24 10:46:19 dfr Exp
+# created from FreeBSD: user/dfr/gssapi/6/sys/kern/syscalls.master 184813 2008-11-10 16:23:24Z dfr
MIASM = \
syscall.o \
exit.o \
@@ -313,4 +313,5 @@ MIASM = \
setaudit_addr.o \
auditctl.o \
_umtx_op.o \
- thr_new.o
+ thr_new.o \
+ gssd_syscall.o
Modified: user/dfr/gssapi/6/sys/sys/sysproto.h
==============================================================================
--- user/dfr/gssapi/6/sys/sys/sysproto.h Mon Nov 10 18:07:08 2008 (r184820)
+++ user/dfr/gssapi/6/sys/sys/sysproto.h Mon Nov 10 18:08:05 2008 (r184821)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: src/sys/kern/syscalls.master,v 1.198.2.6 2008/04/24 10:46:19 dfr Exp
+ * created from FreeBSD: user/dfr/gssapi/6/sys/kern/syscalls.master 184813 2008-11-10 16:23:24Z dfr
*/
#ifndef _SYS_SYSPROTO_H_
@@ -1370,6 +1370,9 @@ struct thr_new_args {
char param_l_[PADL_(struct thr_param *)]; struct thr_param * param; char param_r_[PADR_(struct thr_param *)];
char param_size_l_[PADL_(int)]; int param_size; char param_size_r_[PADR_(int)];
};
+struct gssd_syscall_args {
+ char path_l_[PADL_(char *)]; char * path; char path_r_[PADR_(char *)];
+};
int nosys(struct thread *, struct nosys_args *);
void sys_exit(struct thread *, struct sys_exit_args *);
int fork(struct thread *, struct fork_args *);
@@ -1680,6 +1683,7 @@ int setaudit_addr(struct thread *, struc
int auditctl(struct thread *, struct auditctl_args *);
int _umtx_op(struct thread *, struct _umtx_op_args *);
int thr_new(struct thread *, struct thr_new_args *);
+int gssd_syscall(struct thread *, struct gssd_syscall_args *);
#ifdef COMPAT_43
More information about the svn-src-user
mailing list