svn commit: r303701 - in head/sys: compat/freebsd32 kern sys

Ed Schouten ed at FreeBSD.org
Wed Aug 3 06:36:47 UTC 2016


Author: ed
Date: Wed Aug  3 06:36:45 2016
New Revision: 303701
URL: https://svnweb.freebsd.org/changeset/base/303701

Log:
  Regenerate system call tables for r303699 and r303700.

Modified:
  head/sys/compat/freebsd32/freebsd32_proto.h
  head/sys/compat/freebsd32/freebsd32_syscall.h
  head/sys/compat/freebsd32/freebsd32_syscalls.c
  head/sys/compat/freebsd32/freebsd32_sysent.c
  head/sys/compat/freebsd32/freebsd32_systrace_args.c
  head/sys/kern/init_sysent.c
  head/sys/kern/syscalls.c
  head/sys/kern/systrace_args.c
  head/sys/sys/syscall.h
  head/sys/sys/syscall.mk
  head/sys/sys/sysproto.h

Modified: head/sys/compat/freebsd32/freebsd32_proto.h
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_proto.h	Wed Aug  3 06:35:58 2016	(r303700)
+++ head/sys/compat/freebsd32/freebsd32_proto.h	Wed Aug  3 06:36:45 2016	(r303701)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 302094 2016-06-22 21:15:59Z brooks 
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 303699 2016-08-03 06:33:04Z ed 
  */
 
 #ifndef _FREEBSD32_SYSPROTO_H_
@@ -82,7 +82,7 @@ struct freebsd32_execve_args {
 	char envv_l_[PADL_(uint32_t *)]; uint32_t * envv; char envv_r_[PADR_(uint32_t *)];
 };
 struct freebsd32_mprotect_args {
-	char addr_l_[PADL_(const void *)]; const void * addr; char addr_r_[PADR_(const void *)];
+	char addr_l_[PADL_(void *)]; void * addr; char addr_r_[PADR_(void *)];
 	char len_l_[PADL_(size_t)]; size_t len; char len_r_[PADR_(size_t)];
 	char prot_l_[PADL_(int)]; int prot; char prot_r_[PADR_(int)];
 };

Modified: head/sys/compat/freebsd32/freebsd32_syscall.h
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_syscall.h	Wed Aug  3 06:35:58 2016	(r303700)
+++ head/sys/compat/freebsd32/freebsd32_syscall.h	Wed Aug  3 06:36:45 2016	(r303701)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 302094 2016-06-22 21:15:59Z brooks 
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 303699 2016-08-03 06:33:04Z ed 
  */
 
 #define	FREEBSD32_SYS_syscall	0

Modified: head/sys/compat/freebsd32/freebsd32_syscalls.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_syscalls.c	Wed Aug  3 06:35:58 2016	(r303700)
+++ head/sys/compat/freebsd32/freebsd32_syscalls.c	Wed Aug  3 06:36:45 2016	(r303701)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 302094 2016-06-22 21:15:59Z brooks 
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 303699 2016-08-03 06:33:04Z ed 
  */
 
 const char *freebsd32_syscallnames[] = {

Modified: head/sys/compat/freebsd32/freebsd32_sysent.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_sysent.c	Wed Aug  3 06:35:58 2016	(r303700)
+++ head/sys/compat/freebsd32/freebsd32_sysent.c	Wed Aug  3 06:36:45 2016	(r303701)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 302094 2016-06-22 21:15:59Z brooks 
+ * created from FreeBSD: head/sys/compat/freebsd32/syscalls.master 303699 2016-08-03 06:33:04Z ed 
  */
 
 #include "opt_compat.h"

Modified: head/sys/compat/freebsd32/freebsd32_systrace_args.c
==============================================================================
--- head/sys/compat/freebsd32/freebsd32_systrace_args.c	Wed Aug  3 06:35:58 2016	(r303700)
+++ head/sys/compat/freebsd32/freebsd32_systrace_args.c	Wed Aug  3 06:36:45 2016	(r303701)
@@ -462,7 +462,7 @@ systrace_args(int sysnum, void *params, 
 	/* freebsd32_mprotect */
 	case 74: {
 		struct freebsd32_mprotect_args *p = params;
-		uarg[0] = (intptr_t) p->addr; /* const void * */
+		uarg[0] = (intptr_t) p->addr; /* void * */
 		uarg[1] = p->len; /* size_t */
 		iarg[2] = p->prot; /* int */
 		*n_args = 3;
@@ -4020,7 +4020,7 @@ systrace_entry_setargdesc(int sysnum, in
 	case 74:
 		switch(ndx) {
 		case 0:
-			p = "const void *";
+			p = "void *";
 			break;
 		case 1:
 			p = "size_t";

Modified: head/sys/kern/init_sysent.c
==============================================================================
--- head/sys/kern/init_sysent.c	Wed Aug  3 06:35:58 2016	(r303700)
+++ head/sys/kern/init_sysent.c	Wed Aug  3 06:36:45 2016	(r303701)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/kern/syscalls.master 303435 2016-07-28 12:22:01Z ed 
+ * created from FreeBSD: head/sys/kern/syscalls.master 303700 2016-08-03 06:35:58Z ed 
  */
 
 #include "opt_compat.h"

Modified: head/sys/kern/syscalls.c
==============================================================================
--- head/sys/kern/syscalls.c	Wed Aug  3 06:35:58 2016	(r303700)
+++ head/sys/kern/syscalls.c	Wed Aug  3 06:36:45 2016	(r303701)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/kern/syscalls.master 303435 2016-07-28 12:22:01Z ed 
+ * created from FreeBSD: head/sys/kern/syscalls.master 303700 2016-08-03 06:35:58Z ed 
  */
 
 const char *syscallnames[] = {

Modified: head/sys/kern/systrace_args.c
==============================================================================
--- head/sys/kern/systrace_args.c	Wed Aug  3 06:35:58 2016	(r303700)
+++ head/sys/kern/systrace_args.c	Wed Aug  3 06:36:45 2016	(r303701)
@@ -459,7 +459,7 @@ systrace_args(int sysnum, void *params, 
 	/* mprotect */
 	case 74: {
 		struct mprotect_args *p = params;
-		uarg[0] = (intptr_t) p->addr; /* const void * */
+		uarg[0] = (intptr_t) p->addr; /* void * */
 		uarg[1] = p->len; /* size_t */
 		iarg[2] = p->prot; /* int */
 		*n_args = 3;
@@ -4027,7 +4027,7 @@ systrace_entry_setargdesc(int sysnum, in
 	case 74:
 		switch(ndx) {
 		case 0:
-			p = "const void *";
+			p = "void *";
 			break;
 		case 1:
 			p = "size_t";

Modified: head/sys/sys/syscall.h
==============================================================================
--- head/sys/sys/syscall.h	Wed Aug  3 06:35:58 2016	(r303700)
+++ head/sys/sys/syscall.h	Wed Aug  3 06:36:45 2016	(r303701)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/kern/syscalls.master 303435 2016-07-28 12:22:01Z ed 
+ * created from FreeBSD: head/sys/kern/syscalls.master 303700 2016-08-03 06:35:58Z ed 
  */
 
 #define	SYS_syscall	0

Modified: head/sys/sys/syscall.mk
==============================================================================
--- head/sys/sys/syscall.mk	Wed Aug  3 06:35:58 2016	(r303700)
+++ head/sys/sys/syscall.mk	Wed Aug  3 06:36:45 2016	(r303701)
@@ -1,7 +1,7 @@
 # FreeBSD system call object files.
 # DO NOT EDIT-- this file is automatically generated.
 # $FreeBSD$
-# created from FreeBSD: head/sys/kern/syscalls.master 303435 2016-07-28 12:22:01Z ed 
+# created from FreeBSD: head/sys/kern/syscalls.master 303700 2016-08-03 06:35:58Z ed 
 MIASM =  \
 	syscall.o \
 	exit.o \

Modified: head/sys/sys/sysproto.h
==============================================================================
--- head/sys/sys/sysproto.h	Wed Aug  3 06:35:58 2016	(r303700)
+++ head/sys/sys/sysproto.h	Wed Aug  3 06:36:45 2016	(r303701)
@@ -3,7 +3,7 @@
  *
  * DO NOT EDIT-- this file is automatically generated.
  * $FreeBSD$
- * created from FreeBSD: head/sys/kern/syscalls.master 303435 2016-07-28 12:22:01Z ed 
+ * created from FreeBSD: head/sys/kern/syscalls.master 303700 2016-08-03 06:35:58Z ed 
  */
 
 #ifndef _SYS_SYSPROTO_H_
@@ -277,7 +277,7 @@ struct munmap_args {
 	char len_l_[PADL_(size_t)]; size_t len; char len_r_[PADR_(size_t)];
 };
 struct mprotect_args {
-	char addr_l_[PADL_(const void *)]; const void * addr; char addr_r_[PADR_(const void *)];
+	char addr_l_[PADL_(void *)]; void * addr; char addr_r_[PADR_(void *)];
 	char len_l_[PADL_(size_t)]; size_t len; char len_r_[PADR_(size_t)];
 	char prot_l_[PADL_(int)]; int prot; char prot_r_[PADR_(int)];
 };


More information about the svn-src-head mailing list