svn commit: r276810 - in stable/10/sys: amd64/linux32 i386/linux
Dmitry Chagin
dchagin at FreeBSD.org
Thu Jan 8 06:23:12 UTC 2015
Author: dchagin
Date: Thu Jan 8 06:23:11 2015
New Revision: 276810
URL: https://svnweb.freebsd.org/changeset/base/276810
Log:
MFC r276508, r276509:
Correct an argument status of wait4 syscall for Linuxulator.
Modified:
stable/10/sys/amd64/linux32/syscalls.master
stable/10/sys/i386/linux/syscalls.master
Directory Properties:
stable/10/ (props changed)
Modified: stable/10/sys/amd64/linux32/syscalls.master
==============================================================================
--- stable/10/sys/amd64/linux32/syscalls.master Thu Jan 8 05:46:16 2015 (r276809)
+++ stable/10/sys/amd64/linux32/syscalls.master Thu Jan 8 06:23:11 2015 (r276810)
@@ -207,7 +207,7 @@
112 AUE_NULL UNIMPL idle
113 AUE_NULL UNIMPL vm86old
114 AUE_WAIT4 STD { int linux_wait4(l_pid_t pid, \
- l_uint *status, l_int options, \
+ l_int *status, l_int options, \
struct l_rusage *rusage); }
115 AUE_SWAPOFF STD { int linux_swapoff(void); }
116 AUE_NULL STD { int linux_sysinfo(struct l_sysinfo *info); }
Modified: stable/10/sys/i386/linux/syscalls.master
==============================================================================
--- stable/10/sys/i386/linux/syscalls.master Thu Jan 8 05:46:16 2015 (r276809)
+++ stable/10/sys/i386/linux/syscalls.master Thu Jan 8 06:23:11 2015 (r276810)
@@ -208,7 +208,7 @@
112 AUE_NULL UNIMPL idle
113 AUE_NULL STD { int linux_vm86old(void); }
114 AUE_WAIT4 STD { int linux_wait4(l_pid_t pid, \
- l_uint *status, l_int options, \
+ l_int *status, l_int options, \
struct l_rusage *rusage); }
115 AUE_SWAPOFF STD { int linux_swapoff(void); }
116 AUE_NULL STD { int linux_sysinfo(struct l_sysinfo *info); }
More information about the svn-src-all
mailing list