PERFORCE change 43102 for review

Marcel Moolenaar marcel at FreeBSD.org
Thu Nov 27 15:06:40 PST 2003


http://perforce.freebsd.org/chv.cgi?CH=43102

Change 43102 by marcel at marcel_nfs on 2003/11/27 15:05:58

	Regen.

Affected files ...

.. //depot/projects/ia64/sys/kern/init_sysent.c#32 edit
.. //depot/projects/ia64/sys/kern/syscalls.c#33 edit
.. //depot/projects/ia64/sys/sys/syscall.h#32 edit
.. //depot/projects/ia64/sys/sys/syscall.mk#32 edit
.. //depot/projects/ia64/sys/sys/sysproto.h#35 edit

Differences ...

==== //depot/projects/ia64/sys/kern/init_sysent.c#32 (text+ko) ====

@@ -2,7 +2,7 @@
  * System call switch table.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $FreeBSD: src/sys/kern/init_sysent.c,v 1.161 2003/11/14 03:49:41 jeff Exp $
+ * $FreeBSD$
  * created from FreeBSD: src/sys/kern/syscalls.master,v 1.158 2003/11/14 03:48:37 jeff Exp 
  */
 
@@ -468,4 +468,5 @@
 	{ AS(extattr_list_fd_args), (sy_call_t *)extattr_list_fd },	/* 437 = extattr_list_fd */
 	{ AS(extattr_list_file_args), (sy_call_t *)extattr_list_file },	/* 438 = extattr_list_file */
 	{ AS(extattr_list_link_args), (sy_call_t *)extattr_list_link },	/* 439 = extattr_list_link */
+	{ SYF_MPSAFE | AS(kse_switchin_args), (sy_call_t *)kse_switchin },	/* 440 = kse_switchin */
 };

==== //depot/projects/ia64/sys/kern/syscalls.c#33 (text+ko) ====

@@ -2,7 +2,7 @@
  * System call names.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $FreeBSD: src/sys/kern/syscalls.c,v 1.147 2003/11/14 03:49:41 jeff Exp $
+ * $FreeBSD$
  * created from FreeBSD: src/sys/kern/syscalls.master,v 1.158 2003/11/14 03:48:37 jeff Exp 
  */
 
@@ -447,4 +447,5 @@
 	"extattr_list_fd",			/* 437 = extattr_list_fd */
 	"extattr_list_file",			/* 438 = extattr_list_file */
 	"extattr_list_link",			/* 439 = extattr_list_link */
+	"kse_switchin",			/* 440 = kse_switchin */
 };

==== //depot/projects/ia64/sys/sys/syscall.h#32 (text+ko) ====

@@ -2,7 +2,7 @@
  * System call numbers.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $FreeBSD: src/sys/sys/syscall.h,v 1.145 2003/11/14 03:49:41 jeff Exp $
+ * $FreeBSD$
  * created from FreeBSD: src/sys/kern/syscalls.master,v 1.158 2003/11/14 03:48:37 jeff Exp 
  */
 
@@ -351,4 +351,5 @@
 #define	SYS_extattr_list_fd	437
 #define	SYS_extattr_list_file	438
 #define	SYS_extattr_list_link	439
-#define	SYS_MAXSYSCALL	440
+#define	SYS_kse_switchin	440
+#define	SYS_MAXSYSCALL	441

==== //depot/projects/ia64/sys/sys/syscall.mk#32 (text+ko) ====

@@ -1,6 +1,6 @@
 # FreeBSD system call names.
 # DO NOT EDIT-- this file is automatically generated.
-# $FreeBSD: src/sys/sys/syscall.mk,v 1.100 2003/11/14 03:49:41 jeff Exp $
+# $FreeBSD$
 # created from FreeBSD: src/sys/kern/syscalls.master,v 1.158 2003/11/14 03:48:37 jeff Exp 
 MIASM =  \
 	syscall.o \
@@ -292,4 +292,5 @@
 	jail_attach.o \
 	extattr_list_fd.o \
 	extattr_list_file.o \
-	extattr_list_link.o
+	extattr_list_link.o \
+	kse_switchin.o

==== //depot/projects/ia64/sys/sys/sysproto.h#35 (text+ko) ====

@@ -2,7 +2,7 @@
  * System call prototypes.
  *
  * DO NOT EDIT-- this file is automatically generated.
- * $FreeBSD: src/sys/sys/sysproto.h,v 1.141 2003/11/14 03:49:41 jeff Exp $
+ * $FreeBSD$
  * created from FreeBSD: src/sys/kern/syscalls.master,v 1.158 2003/11/14 03:48:37 jeff Exp 
  */
 
@@ -1284,6 +1284,11 @@
 	char data_l_[PADL_(void *)]; void * data; char data_r_[PADR_(void *)];
 	char nbytes_l_[PADL_(size_t)]; size_t nbytes; char nbytes_r_[PADR_(size_t)];
 };
+struct kse_switchin_args {
+	char mcp_l_[PADL_(const struct __mcontext *)]; const struct __mcontext * mcp; char mcp_r_[PADR_(const struct __mcontext *)];
+	char val_l_[PADL_(long)]; long val; char val_r_[PADR_(long)];
+	char loc_l_[PADL_(long *)]; long * loc; char loc_r_[PADR_(long *)];
+};
 int	nosys(struct thread *, struct nosys_args *);
 void	sys_exit(struct thread *, struct sys_exit_args *);
 int	fork(struct thread *, struct fork_args *);
@@ -1573,6 +1578,7 @@
 int	extattr_list_fd(struct thread *, struct extattr_list_fd_args *);
 int	extattr_list_file(struct thread *, struct extattr_list_file_args *);
 int	extattr_list_link(struct thread *, struct extattr_list_link_args *);
+int	kse_switchin(struct thread *, struct kse_switchin_args *);
 
 #ifdef COMPAT_43
 


More information about the p4-projects mailing list