unix: Use fork instead of vfork in runner.

This commit is contained in:
Ryan Dahl 2011-05-27 01:47:04 -07:00
parent 7e34b7bdfc
commit e28c0bb60b

View File

@ -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");