Compare commits
2 Commits
71baad630d
...
64eb427c5d
| Author | SHA1 | Date | |
|---|---|---|---|
| 64eb427c5d | |||
| bb246f24aa |
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
build
|
||||
@@ -823,9 +823,9 @@ int os_exec(const char *program, const char *arg, int wait_completion)
|
||||
pid_t pid;
|
||||
int pid_status;
|
||||
|
||||
pid = fork();
|
||||
pid = vfork();
|
||||
if (pid < 0) {
|
||||
perror("fork");
|
||||
perror("vfork");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user