diff options
author | dchagin <dchagin@FreeBSD.org> | 2015-01-08 06:23:11 +0000 |
---|---|---|
committer | dchagin <dchagin@FreeBSD.org> | 2015-01-08 06:23:11 +0000 |
commit | 8d0bd37b09ff9f727ed96f1319ca7a946e12fa9b (patch) | |
tree | 3dff8d0a0882eff9a44dd783c01ec697b7e31edf /sys/amd64 | |
parent | 881f69699c38b25568fa51a3937070d03607e2c7 (diff) | |
download | FreeBSD-src-8d0bd37b09ff9f727ed96f1319ca7a946e12fa9b.zip FreeBSD-src-8d0bd37b09ff9f727ed96f1319ca7a946e12fa9b.tar.gz |
MFC r276508, r276509:
Correct an argument status of wait4 syscall for Linuxulator.
Diffstat (limited to 'sys/amd64')
-rw-r--r-- | sys/amd64/linux32/syscalls.master | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/linux32/syscalls.master b/sys/amd64/linux32/syscalls.master index 00002a4..5b39dc3 100644 --- a/sys/amd64/linux32/syscalls.master +++ b/sys/amd64/linux32/syscalls.master @@ -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); } |