svn commit: r258107 - in stable/9/sys: kern sys
John Baldwin
jhb at FreeBSD.org
Wed Nov 13 22:32:37 UTC 2013
Author: jhb
Date: Wed Nov 13 22:32:35 2013
New Revision: 258107
URL: http://svnweb.freebsd.org/changeset/base/258107
Log:
Regen.
Modified:
stable/9/sys/kern/init_sysent.c
stable/9/sys/kern/syscalls.c
stable/9/sys/kern/systrace_args.c
stable/9/sys/sys/syscall.h
stable/9/sys/sys/syscall.mk
stable/9/sys/sys/sysproto.h
Modified: stable/9/sys/kern/init_sysent.c
==============================================================================
--- stable/9/sys/kern/init_sysent.c Wed Nov 13 22:31:56 2013 (r258106)
+++ stable/9/sys/kern/init_sysent.c Wed Nov 13 22:32:35 2013 (r258107)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/9/sys/kern/syscalls.master 254398 2013-08-16 06:40:12Z davidxu
+ * created from FreeBSD: stable/9/sys/kern/syscalls.master 258106 2013-11-13 22:31:56Z jhb
*/
#include "opt_compat.h"
Modified: stable/9/sys/kern/syscalls.c
==============================================================================
--- stable/9/sys/kern/syscalls.c Wed Nov 13 22:31:56 2013 (r258106)
+++ stable/9/sys/kern/syscalls.c Wed Nov 13 22:32:35 2013 (r258107)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/9/sys/kern/syscalls.master 254398 2013-08-16 06:40:12Z davidxu
+ * created from FreeBSD: stable/9/sys/kern/syscalls.master 258106 2013-11-13 22:31:56Z jhb
*/
const char *syscallnames[] = {
Modified: stable/9/sys/kern/systrace_args.c
==============================================================================
--- stable/9/sys/kern/systrace_args.c Wed Nov 13 22:31:56 2013 (r258106)
+++ stable/9/sys/kern/systrace_args.c Wed Nov 13 22:32:35 2013 (r258107)
@@ -3256,7 +3256,7 @@ systrace_args(int sysnum, void *params,
/* wait6 */
case 532: {
struct wait6_args *p = params;
- iarg[0] = p->idtype; /* int */
+ iarg[0] = p->idtype; /* idtype_t */
iarg[1] = p->id; /* id_t */
uarg[2] = (intptr_t) p->status; /* int * */
iarg[3] = p->options; /* int */
@@ -8673,7 +8673,7 @@ systrace_setargdesc(int sysnum, int ndx,
case 532:
switch(ndx) {
case 0:
- p = "int";
+ p = "idtype_t";
break;
case 1:
p = "id_t";
Modified: stable/9/sys/sys/syscall.h
==============================================================================
--- stable/9/sys/sys/syscall.h Wed Nov 13 22:31:56 2013 (r258106)
+++ stable/9/sys/sys/syscall.h Wed Nov 13 22:32:35 2013 (r258107)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/9/sys/kern/syscalls.master 254398 2013-08-16 06:40:12Z davidxu
+ * created from FreeBSD: stable/9/sys/kern/syscalls.master 258106 2013-11-13 22:31:56Z jhb
*/
#define SYS_syscall 0
Modified: stable/9/sys/sys/syscall.mk
==============================================================================
--- stable/9/sys/sys/syscall.mk Wed Nov 13 22:31:56 2013 (r258106)
+++ stable/9/sys/sys/syscall.mk Wed Nov 13 22:32:35 2013 (r258107)
@@ -1,7 +1,7 @@
# FreeBSD system call names.
# DO NOT EDIT-- this file is automatically generated.
# $FreeBSD$
-# created from FreeBSD: stable/9/sys/kern/syscalls.master 254398 2013-08-16 06:40:12Z davidxu
+# created from FreeBSD: stable/9/sys/kern/syscalls.master 258106 2013-11-13 22:31:56Z jhb
MIASM = \
syscall.o \
exit.o \
Modified: stable/9/sys/sys/sysproto.h
==============================================================================
--- stable/9/sys/sys/sysproto.h Wed Nov 13 22:31:56 2013 (r258106)
+++ stable/9/sys/sys/sysproto.h Wed Nov 13 22:32:35 2013 (r258107)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/9/sys/kern/syscalls.master 254398 2013-08-16 06:40:12Z davidxu
+ * created from FreeBSD: stable/9/sys/kern/syscalls.master 258106 2013-11-13 22:31:56Z jhb
*/
#ifndef _SYS_SYSPROTO_H_
@@ -14,6 +14,7 @@
#include <sys/cpuset.h>
#include <sys/_semaphore.h>
#include <sys/ucontext.h>
+#include <sys/wait.h>
#include <bsm/audit_kevents.h>
@@ -1745,7 +1746,7 @@ struct posix_fadvise_args {
char advice_l_[PADL_(int)]; int advice; char advice_r_[PADR_(int)];
};
struct wait6_args {
- char idtype_l_[PADL_(int)]; int idtype; char idtype_r_[PADR_(int)];
+ char idtype_l_[PADL_(idtype_t)]; idtype_t idtype; char idtype_r_[PADR_(idtype_t)];
char id_l_[PADL_(id_t)]; id_t id; char id_r_[PADR_(id_t)];
char status_l_[PADL_(int *)]; int * status; char status_r_[PADR_(int *)];
char options_l_[PADL_(int)]; int options; char options_r_[PADR_(int)];
More information about the svn-src-stable-9
mailing list