并发执行进程

时间:2013-07-15 13:16:01

标签: c++ c linux parallel-processing fork

我的程序从用户获取范围。然后它创建3个进程并逐个执行它们 但我希望所有进程同时运行。

    #include <stdio.h>
    #include <stdlib.h>
    #include <unistd.h>
    #include <string.h>
    #include <sys/wait.h>

    void function();
    cin>>range;
cin>>process;
    int main() {
    int range = 1000;
    int i;
    int pid;
    int pid1;
    for(i = 0; i < ; i++) {
    pid1 = fork();
    }
    if(pid1==0) {
    pid = getpid();
    printf("The process id is: %d\n", pid);
    function(range); 
    }
    else {
    wait(0); 
    }
    return 0;
    }

1 个答案:

答案 0 :(得分:1)

首先,正如其他人所提到的那样,你不是要求3个进程,而是你要求8.解决这个问题:

 for (i = 0; i < 3; ++i) {
     pid1 = fork();
     if (pid1 == 0) break;
 }

然后,所有4个进程 并行运行。根据{{​​1}}的作用,可能很难看到这一点 - 它可能会完成得太快。所以试试这个:

function

你应该三次打印输出“pid = XX”,然后延迟大约5秒,然后“完成睡眠XX”。