这是我的代码,为了执行我运行的这个程序./2c 10 5
——10 代表参数 1,5 代表参数 2。该程序将运行 10 个子进程,第 5 个子进程将生成另一个子进程,但在这种情况下,我的 ppid 始终相同。它永远不会改变。所以对于每个孩子,我都有相同的 ppid,
我得到的输出是:
pid:1 ppid:6 pid:2 ppid:6 pid: 3 ppid: 6 pid: 4 ppid: 6 pid: 5 ppid: 6`` pid: 6 ppid: 6 pid: 7 ppid: 6 pid: 8 ppid: 6 pid: 9 ppid: 6 pid:10 ppid:6
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/wait.h>
int main(int argc, char *argv[],char *envp[])
{
int i,a;
a=getpid();
int pid;
int child,child2;
child=atoi(argv[1]);
child2=atoi(argv[2]);
if(atoi(argv[2])>atoi(argv[1]))
{
printf("arg2 is bigger than arg1!");
exit(1);
}
for(i=1;i<=child;i++)
{
pid=fork();
if(i=child2 && pid==0)
{
pid=fork();
break;
}
if(pid==0)
break;
}
if(getpid()!=a)
if(getppid()==a)
{
printf("PID: %d PPID: %d\n",getpid(),getppid());
sleep(5);
exit(0);
}
for(i=1;i<=child+1;i++)
wait(0);
return 0;
}
这是我的代码,有人可以对此进行测试并在此站点上发送输出...所以我可以比较..编译我使用 gcc test.c -o test 并运行 ./test 10 5 ...
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/wait.h>
int main(int argc, char *argv[], char *envp[])
{
int i,a;
a=getpid();
pid_t pid;
int child,child2;
child=atoi(argv[1]);
child2=atoi(argv[2]);
if(atoi(argv[2])>atoi(argv[1]))
{
printf("2nd argumentet is bigger than 1st");
exit(1);
}
for(i=1;i<=child;i++)
{
pid=fork();
if(i==child2 && pid==0)
{
pid=fork();
break;
}
if(pid==0)
break;
}
if(getpid()!=child2)
{
printf("PID: %d PPID: %d\n",getpid(),getppid());
sleep(5);
exit(0);
}
for(i=0;i<=child+1;i++)
wait(0);
return 0;
}