Date: Sat, 14 Oct 2006 09:49:44 GMT From: Roman Divacky <rdivacky@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 107865 for review Message-ID: <200610140949.k9E9ni8W063165@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=107865 Change 107865 by rdivacky@rdivacky_witten on 2006/10/14 09:49:33 Implement correct prototype for prctl. Affected files ... .. //depot/projects/linuxolator/src/sys/amd64/linux32/syscalls.master#4 edit .. //depot/projects/linuxolator/src/sys/i386/linux/syscalls.master#3 edit Differences ... ==== //depot/projects/linuxolator/src/sys/amd64/linux32/syscalls.master#4 (text+ko) ==== @@ -298,7 +298,8 @@ l_gid16_t egid, l_gid16_t sgid); } 171 AUE_GETRESGID STD { int linux_getresgid16(l_gid16_t *rgid, \ l_gid16_t *egid, l_gid16_t *sgid); } -172 AUE_PRCTL STD { int linux_prctl(void); } +172 AUE_PRCTL STD { int linux_prctl(l_int option, l_int arg2, l_int arg3 \ + l_int arg4, l_int arg5); } 173 AUE_NULL STD { int linux_rt_sigreturn( \ struct l_ucontext *ucp); } 174 AUE_NULL STD { int linux_rt_sigaction(l_int sig, \ ==== //depot/projects/linuxolator/src/sys/i386/linux/syscalls.master#3 (text+ko) ==== @@ -301,7 +301,8 @@ l_gid16_t egid, l_gid16_t sgid); } 171 AUE_GETRESGID STD { int linux_getresgid16(l_gid16_t *rgid, \ l_gid16_t *egid, l_gid16_t *sgid); } -172 AUE_PRCTL STD { int linux_prctl(void); } +172 AUE_PRCTL STD { int linux_prctl(l_int option, l_int arg2, l_int arg3 \ + l_int arg4, l_int arg5); } 173 AUE_NULL STD { int linux_rt_sigreturn( \ struct l_ucontext *ucp); } 174 AUE_NULL STD { int linux_rt_sigaction(l_int sig, \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200610140949.k9E9ni8W063165>