Closed EdenBendheim closed 11 months ago
After running zopen build -v in boostport, I receive this compiler error:
execunix.cpp:540:33: error: use of undeclared identifier 'wait4' while ( ( pid = wait4( cmdtab[ i ].pid, &status, 0, &cmd_usage ) ) == -1 ) ^
I thought wait4 was a UNIX command that should be useable in the program. Any help would be appreciated.
Replaced wait4 with waitpid and removed some parameters, change added in patch.
After running zopen build -v in boostport, I receive this compiler error:
I thought wait4 was a UNIX command that should be useable in the program. Any help would be appreciated.