加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
myPCB.cc 1.54 KB
一键复制 编辑 原始数据 按行查看 历史
张宇凯 提交于 2023-03-15 18:23 . 进程复习
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdlib.h>
// int main()
// {
// int a = 10;
// pid_t id = fork();
// if (id == 0)
// {
// // child
// a=1000;
// printf("child: a: %d &a: %p\n", a, &a);
// sleep(1);
// exit(1);
// }
// else
// {
// printf("parent: a: %d &a: %p\n", a, &a);
// sleep(1);
// }
// return 0;
// }
// int main()
// {
// printf("hello Linux\n");
// return 1;
// }
// int main
// {
// printf("hello Linux\n");
// return 0;
// printf("hello world\n");
// // }
// void test()
// {
// printf("hello test\n");
// _exit(1);
// }
// int main()
// {
// test();
// printf("hello linux\n");
// return 10;
// }
// int main()
// {
// pid_t id = fork();
// if (id == 0)
// {
// // child
// printf("i am child process.ppid:%d pid:%d\n", getppid(), getpid());
// sleep(1);
// }
// else
// {
// int status = 0;
// wait(&status);
// printf("i am parent process. ppid: %d pid: %d\n", getppid(), getpid());
// sleep(1);
// }
// return 0;
// }
int main()
{
pid_t id=fork();
if(id==0)
{
printf("child ppid=%d,pid=%d",getppid(),getpid());
}
else
{
int status=0;
wait(&status);
if(WIFEXITED(status))
{
printf("father ppid=%d pid=%d",getppid(),getpid());
printf("进程退出码:%d\n",WEXITSTATUS(status));
}
}
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化