Compare commits

...

2 Commits

Author SHA1 Message Date
64eb427c5d Fixed a build error for single-threaded Linux 2025-09-24 08:13:19 +03:00
bb246f24aa Added .gitignore 2025-09-23 16:09:16 +03:00
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
build

View File

@@ -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;
}