waitpid() の結果をチェックして、実行が失敗したかどうかを判断しようとしています。ただし、失敗することがわかっているコマンドを実行して問題を stderr に書き込んでも、以下のチェックは登録されません。このコードの何が間違っている可能性がありますか?
助けてくれてありがとう。
pid_t pid; // the child process that the execution runs inside of.
int ret; // exit status of child process.
child = fork();
if (pid == -1)
{
// issue with forking
}
else if (pid == 0)
{
execvp(thingToRun, ThingToRunArray); // thingToRun is the program name, ThingToRunArray is
// programName + input params to it + NULL.
exit(-1);
}
else // We're in the parent process.
{
if (waitpid(pid, &ret, 0) == -1)
{
// Log an error.
}
if (!WIFEXITED(ret)) // If there was an error with the child process.
{
}
}