wifexited和waitpid函數(shù)可以一起使用來等待子進(jìn)程的退出狀態(tài),并且獲取子進(jìn)程的退出狀態(tài)信息。
具體步驟如下:
示例代碼如下:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/wait.h>
int main() {
pid_t pid = fork();
if (pid < 0) {
perror("fork error");
exit(-1);
} else if (pid == 0) {
// 子進(jìn)程
printf("Child process is running\n");
exit(0);
} else {
// 父進(jìn)程
int status;
waitpid(pid, &status, 0);
if (WIFEXITED(status)) {
printf("Child process exited normally with status: %d\n", WEXITSTATUS(status));
}
}
return 0;
}
在上面的示例代碼中,父進(jìn)程通過waitpid函數(shù)等待子進(jìn)程的退出狀態(tài),并通過WIFEXITED和WEXITSTATUS來獲取子進(jìn)程的退出狀態(tài)信息。