codeblocks怎么无法实现函数,变量的跳转

 我来答
无时无刻的相恋
2017-01-02 · TA获得超过2641个赞
知道大有可为答主
回答量:1.7万
采纳率:25%
帮助的人:2743万
展开全部
[code=c][#include <stdio.h>
#include <unistd.h>
#include <sys/wait.h>
main(){

int pid,status,exit_status;
if ((pid=fork()) <0)
{
perror("fork failed");
exit(1);
}
if (!pid){
/* 子进程 */
sleep(4);
exit(5); /* 使用非零值退出,以便主进程观察 */

}
/* 父进程 */
if (wait(&status) <0)
{
perror("wait failed");
exit(1);
}
/* 将 status 与 0xFF(255)与来测试低 8 位 */
if (status & 0xFF)
printf("Somne low-roderbits not zero\n");
else
{
exit_status=status >> 8;
exit_status &=0xFF;
printf("Exit status from %d was %d\n", pid,exit_status);
//就在这个地方我点住右键pid然后选择find decleration of pid
//弹出的错误就是warning :not found pid

}
exit(0);
}
/code]
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式