From e28c0bb60bfc47d116fcd8f479e628c8f3f29d19 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 27 May 2011 01:47:04 -0700 Subject: [PATCH] unix: Use fork instead of vfork in runner. --- test/runner-unix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner-unix.c b/test/runner-unix.c index 9f74d16ee..139b67194 100644 --- a/test/runner-unix.c +++ b/test/runner-unix.c @@ -80,7 +80,7 @@ int process_start(char* name, process_info_t* p) { p->terminated = 0; p->status = 0; - pid_t pid = vfork(); + pid_t pid = fork(); if (pid < 0) { perror("vfork");