gpt4 book ai didi

c - 从 child 、顺序和 PID 和 PPIDs 中 fork 3 个孙子的麻烦

转载 作者:太空宇宙 更新时间:2023-11-04 08:22:24 25 4
gpt4 key购买 nike

您好,我有一个关于使用 fork() 创建更多 child 的问题,该问题基于我之前提出的问题 using fork() to make 3 children out of 1 parent in C (not C++)

我希望我的输出看起来像这样(#s 被简化并仅用于说明顺序)

[grandpa]hi am I PID 1234 and I come from ####(dont care what this number is)
[dad] hi i am PID 2111 and I come from PPID 1234
[son] hi i am PID 3111 and I come from PPID 2111
[son] hi i am PID 3112 and I come from PPID 2111
[son] hi i am PID 3113 and I come from PPID 2111
[dad] hi i am PID 2112 and I come from PPID 1234
[son] hi i am PID 3111 and I come from PPID 2112
[son] hi i am PID 3112 and I come from PPID 2112
[son] hi i am PID 3113 and I come from PPID 2112
[dad] hi i am PID 2113 and I come from PPID 1234
[son] hi i am PID 3111 and I come from PPID 2113
[son] hi i am PID 3112 and I come from PPID 2113
[son] hi i am PID 3113 and I come from PPID 2113

但是我的输出是这样的:

output

除了最后一个和大多数 PID 之外,关于爸爸 ppid 的最后似乎没问题。我不知道为什么有一个儿子,然后是5个,然后是3个儿子。这是我的代码:

int grandforking(null)
{
Gen1 (null);
return 0;
}

int Gen1 (null)
{
void about(char *);
int i=0;
int j=0;
about("grandpa");
for(i = 0; i < 3; i++ )
{
pid_t child = 0;
child = fork();
if (child < 0)
{ //unable to fork error
perror ("Unable to fork");
exit(-1);
}
else if (child == 0)
{ //child process
Gen2 (null);
exit(0);
}
else
{ //parent process
//(do nothing)
}
}
for(j = 0; j < 3; j++ )
{
wait(NULL);//wait for parent to acknowledge child process
}
return 0;
}

int Gen2 (null)
{
int i=0;
int j=0;
about("dad");
for(i = 0; i < 3; i++ )
{
pid_t child = 0;
child = fork();
if (child < 0)
{ //unable to fork error
perror ("Unable to fork");
exit(-1);
}
else if (child == 0)
{ //child process
about ("son");
exit(0);
}
else
{ //parent process
//(do nothing)
}
}
for(j = 0; j < 3; j++ )
{
wait(NULL);//wait for parent to acknowledge child process
}
return 0;
}

最佳答案

一旦进程启动,调度程序就可以并且将会以它希望的任何顺序运行它们。如果您有多个处理器,这包括同时运行多个。 (现在和每个人一样。)

它当然可以启动一个子进程,运行该子进程一段时间,然后才返回父进程打印消息。

如果您在父级生成其子级之前使用标识 printf,您的排序会稍微好一些。

但获得同步排序的唯一方法是执行以下操作:

  • 表明自己
  • 循环开始
    • 启动一个 child
    • 等待 child 完成
  • 所有 child 完成后退出

关于c - 从 child 、顺序和 PID 和 PPIDs 中 fork 3 个孙子的麻烦,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32855944/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com