svn commit: r293502 - stable/10/sys/i386/linux
Dmitry Chagin
dchagin at FreeBSD.org
Sat Jan 9 15:26:22 UTC 2016
Author: dchagin
Date: Sat Jan 9 15:26:20 2016
New Revision: 293502
URL: https://svnweb.freebsd.org/changeset/base/293502
Log:
Regen for r293501.
Modified:
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/i386/linux/linux_proto.h
==============================================================================
--- stable/10/sys/i386/linux/linux_proto.h Sat Jan 9 15:25:22 2016 (r293501)
+++ stable/10/sys/i386/linux/linux_proto.h Sat Jan 9 15:26:20 2016 (r293502)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 293487 2016-01-09 14:47:08Z dchagin
+ * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 293501 2016-01-09 15:25:22Z dchagin
*/
#ifndef _LINUX_SYSPROTO_H_
@@ -360,7 +360,7 @@ 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_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 *)];
+ char rusage_l_[PADL_(void *)]; void * rusage; char rusage_r_[PADR_(void *)];
};
struct linux_swapoff_args {
register_t dummy;
Modified: stable/10/sys/i386/linux/linux_syscall.h
==============================================================================
--- stable/10/sys/i386/linux/linux_syscall.h Sat Jan 9 15:25:22 2016 (r293501)
+++ stable/10/sys/i386/linux/linux_syscall.h Sat Jan 9 15:26:20 2016 (r293502)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 293487 2016-01-09 14:47:08Z dchagin
+ * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 293501 2016-01-09 15:25:22Z dchagin
*/
#define LINUX_SYS_linux_exit 1
Modified: stable/10/sys/i386/linux/linux_syscalls.c
==============================================================================
--- stable/10/sys/i386/linux/linux_syscalls.c Sat Jan 9 15:25:22 2016 (r293501)
+++ stable/10/sys/i386/linux/linux_syscalls.c Sat Jan 9 15:26:20 2016 (r293502)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 293487 2016-01-09 14:47:08Z dchagin
+ * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 293501 2016-01-09 15:25:22Z dchagin
*/
const char *linux_syscallnames[] = {
Modified: stable/10/sys/i386/linux/linux_sysent.c
==============================================================================
--- stable/10/sys/i386/linux/linux_sysent.c Sat Jan 9 15:25:22 2016 (r293501)
+++ stable/10/sys/i386/linux/linux_sysent.c Sat Jan 9 15:26:20 2016 (r293502)
@@ -3,7 +3,7 @@
*
* DO NOT EDIT-- this file is automatically generated.
* $FreeBSD$
- * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 293487 2016-01-09 14:47:08Z dchagin
+ * created from FreeBSD: stable/10/sys/i386/linux/syscalls.master 293501 2016-01-09 15:25:22Z dchagin
*/
#include <sys/param.h>
Modified: stable/10/sys/i386/linux/linux_systrace_args.c
==============================================================================
--- stable/10/sys/i386/linux/linux_systrace_args.c Sat Jan 9 15:25:22 2016 (r293501)
+++ stable/10/sys/i386/linux/linux_systrace_args.c Sat Jan 9 15:26:20 2016 (r293502)
@@ -792,7 +792,7 @@ systrace_args(int sysnum, void *params,
iarg[0] = p->pid; /* l_pid_t */
uarg[1] = (intptr_t) p->status; /* l_int * */
iarg[2] = p->options; /* l_int */
- uarg[3] = (intptr_t) p->rusage; /* struct l_rusage * */
+ uarg[3] = (intptr_t) p->rusage; /* void * */
*n_args = 4;
break;
}
@@ -3548,7 +3548,7 @@ systrace_entry_setargdesc(int sysnum, in
p = "l_int";
break;
case 3:
- p = "struct l_rusage *";
+ p = "void *";
break;
default:
break;
More information about the svn-src-stable-10
mailing list