svn commit: r276811 - in stable/10/sys: amd64/linux32 i386/linux
Dmitry Chagin
dchagin at FreeBSD.org
Thu Jan 8 06:24:47 UTC 2015
Author: dchagin
Date: Thu Jan 8 06:24:43 2015
New Revision: 276811
URL: https://svnweb.freebsd.org/changeset/base/276811
Log:
Regen for r276810.
Modified:
stable/10/sys/amd64/linux32/linux32_proto.h
stable/10/sys/amd64/linux32/linux32_syscall.h
stable/10/sys/amd64/linux32/linux32_syscalls.c
stable/10/sys/amd64/linux32/linux32_sysent.c
stable/10/sys/amd64/linux32/linux32_systrace_args.c
stable/10/sys/i386/linux/linux_proto.h
stable/10/sys/i386/linux/linux_syscall.h
stable/10/sys/i386/linux/linux_syscalls.c
stable/10/sys/i386/linux/linux_sysent.c
stable/10/sys/i386/linux/linux_systrace_args.c
Modified: stable/10/sys/amd64/linux32/linux32_proto.h
==============================================================================
--- stable/10/sys/amd64/linux32/linux32_proto.h Thu Jan 8 06:23:11 2015 (r276810)
+++ stable/10/sys/amd64/linux32/linux32_proto.h Thu Jan 8 06:24:43 2015 (r276811)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/10/sys/amd64/linux32/syscalls.master 272020 2014-09-23 07:50:04Z bz
+ * created from FreeBSD: stable/10/sys/amd64/linux32/syscalls.master 276810 2015-01-08 06:23:11Z dchagin
*/
#ifndef _LINUX_SYSPROTO_H_
@@ -352,7 +352,7 @@ struct linux_vhangup_args {
};
struct linux_wait4_args {
char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
- char status_l_[PADL_(l_uint *)]; l_uint * status; char status_r_[PADR_(l_uint *)];
+ char status_l_[PADL_(l_int *)]; l_int * status; char status_r_[PADR_(l_int *)];
char options_l_[PADL_(l_int)]; l_int options; char options_r_[PADR_(l_int)];
char rusage_l_[PADL_(struct l_rusage *)]; struct l_rusage * rusage; char rusage_r_[PADR_(struct l_rusage *)];
};
Modified: stable/10/sys/amd64/linux32/linux32_syscall.h
==============================================================================
--- stable/10/sys/amd64/linux32/linux32_syscall.h Thu Jan 8 06:23:11 2015 (r276810)
+++ stable/10/sys/amd64/linux32/linux32_syscall.h Thu Jan 8 06:24:43 2015 (r276811)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/10/sys/amd64/linux32/syscalls.master 272020 2014-09-23 07:50:04Z bz
+ * created from FreeBSD: stable/10/sys/amd64/linux32/syscalls.master 276810 2015-01-08 06:23:11Z dchagin
*/
#define LINUX_SYS_exit 1
Modified: stable/10/sys/amd64/linux32/linux32_syscalls.c
==============================================================================
--- stable/10/sys/amd64/linux32/linux32_syscalls.c Thu Jan 8 06:23:11 2015 (r276810)
+++ stable/10/sys/amd64/linux32/linux32_syscalls.c Thu Jan 8 06:24:43 2015 (r276811)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/10/sys/amd64/linux32/syscalls.master 272020 2014-09-23 07:50:04Z bz
+ * created from FreeBSD: stable/10/sys/amd64/linux32/syscalls.master 276810 2015-01-08 06:23:11Z dchagin
*/
const char *linux_syscallnames[] = {
Modified: stable/10/sys/amd64/linux32/linux32_sysent.c
==============================================================================
--- stable/10/sys/amd64/linux32/linux32_sysent.c Thu Jan 8 06:23:11 2015 (r276810)
+++ stable/10/sys/amd64/linux32/linux32_sysent.c Thu Jan 8 06:24:43 2015 (r276811)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/10/sys/amd64/linux32/syscalls.master 272020 2014-09-23 07:50:04Z bz
+ * created from FreeBSD: stable/10/sys/amd64/linux32/syscalls.master 276810 2015-01-08 06:23:11Z dchagin
*/
#include "opt_compat.h"
Modified: stable/10/sys/amd64/linux32/linux32_systrace_args.c
==============================================================================
--- stable/10/sys/amd64/linux32/linux32_systrace_args.c Thu Jan 8 06:23:11 2015 (r276810)
+++ stable/10/sys/amd64/linux32/linux32_systrace_args.c Thu Jan 8 06:24:43 2015 (r276811)
@@ -761,7 +761,7 @@ systrace_args(int sysnum, void *params,
case 114: {
struct linux_wait4_args *p = params;
iarg[0] = p->pid; /* l_pid_t */
- uarg[1] = (intptr_t) p->status; /* l_uint * */
+ uarg[1] = (intptr_t) p->status; /* l_int * */
iarg[2] = p->options; /* l_int */
uarg[3] = (intptr_t) p->rusage; /* struct l_rusage * */
*n_args = 4;
@@ -3424,7 +3424,7 @@ systrace_entry_setargdesc(int sysnum, in
p = "l_pid_t";
break;
case 1:
- p = "l_uint *";
+ p = "l_int *";
break;
case 2:
p = "l_int";
Modified: stable/10/sys/i386/linux/linux_proto.h
==============================================================================
--- stable/10/sys/i386/linux/linux_proto.h Thu Jan 8 06:23:11 2015 (r276810)
+++ stable/10/sys/i386/linux/linux_proto.h Thu Jan 8 06:24:43 2015 (r276811)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 272020 2014-09-23 07:50:04Z bz
+ * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 276810 2015-01-08 06:23:11Z dchagin
*/
#ifndef _LINUX_SYSPROTO_H_
@@ -355,7 +355,7 @@ struct linux_vm86old_args {
};
struct linux_wait4_args {
char pid_l_[PADL_(l_pid_t)]; l_pid_t pid; char pid_r_[PADR_(l_pid_t)];
- char status_l_[PADL_(l_uint *)]; l_uint * status; char status_r_[PADR_(l_uint *)];
+ char status_l_[PADL_(l_int *)]; l_int * status; char status_r_[PADR_(l_int *)];
char options_l_[PADL_(l_int)]; l_int options; char options_r_[PADR_(l_int)];
char rusage_l_[PADL_(struct l_rusage *)]; struct l_rusage * rusage; char rusage_r_[PADR_(struct l_rusage *)];
};
Modified: stable/10/sys/i386/linux/linux_syscall.h
==============================================================================
--- stable/10/sys/i386/linux/linux_syscall.h Thu Jan 8 06:23:11 2015 (r276810)
+++ stable/10/sys/i386/linux/linux_syscall.h Thu Jan 8 06:24:43 2015 (r276811)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 272020 2014-09-23 07:50:04Z bz
+ * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 276810 2015-01-08 06:23:11Z dchagin
*/
#define LINUX_SYS_exit 1
Modified: stable/10/sys/i386/linux/linux_syscalls.c
==============================================================================
--- stable/10/sys/i386/linux/linux_syscalls.c Thu Jan 8 06:23:11 2015 (r276810)
+++ stable/10/sys/i386/linux/linux_syscalls.c Thu Jan 8 06:24:43 2015 (r276811)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 272020 2014-09-23 07:50:04Z bz
+ * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 276810 2015-01-08 06:23:11Z dchagin
*/
const char *linux_syscallnames[] = {
Modified: stable/10/sys/i386/linux/linux_sysent.c
==============================================================================
--- stable/10/sys/i386/linux/linux_sysent.c Thu Jan 8 06:23:11 2015 (r276810)
+++ stable/10/sys/i386/linux/linux_sysent.c Thu Jan 8 06:24:43 2015 (r276811)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 272020 2014-09-23 07:50:04Z bz
+ * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 276810 2015-01-08 06:23:11Z dchagin
*/
#include <sys/param.h>
Modified: stable/10/sys/i386/linux/linux_systrace_args.c
==============================================================================
--- stable/10/sys/i386/linux/linux_systrace_args.c Thu Jan 8 06:23:11 2015 (r276810)
+++ stable/10/sys/i386/linux/linux_systrace_args.c Thu Jan 8 06:24:43 2015 (r276811)
@@ -790,7 +790,7 @@ systrace_args(int sysnum, void *params,
case 114: {
struct linux_wait4_args *p = params;
iarg[0] = p->pid; /* l_pid_t */
- uarg[1] = (intptr_t) p->status; /* l_uint * */
+ uarg[1] = (intptr_t) p->status; /* l_int * */
iarg[2] = p->options; /* l_int */
uarg[3] = (intptr_t) p->rusage; /* struct l_rusage * */
*n_args = 4;
@@ -3542,7 +3542,7 @@ systrace_entry_setargdesc(int sysnum, in
p = "l_pid_t";
break;
case 1:
- p = "l_uint *";
+ p = "l_int *";
break;
case 2:
p = "l_int";
More information about the svn-src-stable
mailing list