summaryrefslogtreecommitdiffstats
path: root/sys/i386/linux/linux_machdep.c
diff options
context:
space:
mode:
authornetchild <netchild@FreeBSD.org>2006-10-15 13:39:40 +0000
committernetchild <netchild@FreeBSD.org>2006-10-15 13:39:40 +0000
commita9266094f229bf84c1ae8256db9430654c62c7cf (patch)
tree257dc151bdee49b06995faf6c25efa4125ee5e79 /sys/i386/linux/linux_machdep.c
parent96943a3038c519b8691cf9c12a24a05f0c5b1774 (diff)
downloadFreeBSD-src-a9266094f229bf84c1ae8256db9430654c62c7cf.zip
FreeBSD-src-a9266094f229bf84c1ae8256db9430654c62c7cf.tar.gz
MFP4 (106538 + 106541):
Implement CLONE_VFORK. This fixes the clone05 LTP test. Submitted by: rdivacky
Diffstat (limited to 'sys/i386/linux/linux_machdep.c')
-rw-r--r--sys/i386/linux/linux_machdep.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/sys/i386/linux/linux_machdep.c b/sys/i386/linux/linux_machdep.c
index 849170b..cef0124 100644
--- a/sys/i386/linux/linux_machdep.c
+++ b/sys/i386/linux/linux_machdep.c
@@ -532,6 +532,16 @@ linux_clone(struct thread *td, struct linux_clone_args *args)
td->td_retval[0] = p2->p_pid;
td->td_retval[1] = 0;
+
+ if (args->flags & CLONE_VFORK) {
+ /* wait for the children to exit, ie. emulate vfork */
+ PROC_LOCK(p2);
+ p2->p_flag |= P_PPWAIT;
+ while (p2->p_flag & P_PPWAIT)
+ msleep(td->td_proc, &p2->p_mtx, PWAIT, "ppwait", 0);
+ PROC_UNLOCK(p2);
+ }
+
return (0);
}
OpenPOWER on IntegriCloud