1
我是fork
和exec
的新手,我試了下面的程序。子進程的返回值
計劃1:
int main(int argc, char *argv[]){
pid_t pid;
int status;
pid = fork();
if(pid == 0){
printf("new process");
execv("p1",argv);
}
else{
pid_t pr = wait(&status);// I am trying to get the exit value
// of the sub process.
printf("the child process exit with %d",status);
printf("father still running\n");
}
}
方案2:
int main(){
std::cout<<"I am the new thread"<<std::endl;
sleep(1);
std::cout<<"after 1 second"<<std::endl;
exit(1);
}
我運行的第一個程序,輸出爲 「256子進程退出」。爲什麼結果256
而不是1
?如果我將exit(1)
更改爲exit(2)
,結果爲512
,爲什麼?它只在返回0時起作用。