unix: Use fork instead of vfork in runner.
This commit is contained in:
parent
7e34b7bdfc
commit
e28c0bb60b
@ -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");
|
||||
|
||||
Loading…
Reference in New Issue
Block a user