尝试将父进程拆分为两个子进程。第一个将计算给定数字的阶乘。第二个只会说I'm child 2!
完成后,第一个孩子将输出计算阶乘的时间。让第一个孩子分手并做好自己的工作就好了。但是,我无法让第二个孩子做任何事情。知道我做错了吗?
#include <stdio.h>
#include <time.h>
//#include </sts/types.h>
#include <unistd.h>
//prototypes
int rfact(int n);
int temp = 0;
main()
{
int n = 0;
long i = 0;
double result = 0.0;
clock_t t;
printf("Enter a value for n: ");
scanf("%i", &n);
pid_t pID = fork();
if (pID ==0)//child
{
//get current time
t = clock();
//process factorial 2 million times
for(i=0; i<2000000; i++)
{
rfact(n);
}
//get total time spent in the loop
result = ((double)(clock() - t))/CLOCKS_PER_SEC;
//print result
printf("runtime=%.2f seconds\n", result);
}
else if(pID < 0)
{
printf("fork() has failed");
}
else //parent
{
//second fork for child 2
pid_t pID2 = fork();
if (pID2 == 0)
{
execl("child2.o","child2", 20, NULL);
}
else if (pID2 < 0)
{
printf("fork() has failed");
}
else
{
waitpid(0);
}
waitpid(0);
}
}
//factorial calculation
int rfact(int n)
{
if (n<=0)
{
return 1;
}
return n * rfact(n-1);
}
这是child2.c:
#include <stdio.h>
void main()
{
printf("I'm child 2!");
}
好吧,所以,我遇到了日食问题。我删除了它并重新编译了两个.c文件。我使用execl指向child2.o,但它仍然没有做任何事情
答案 0 :(得分:2)
您无法执行.c源文件! 您需要编译它并执行生成的二进制文件。
使用脚本语言,您通常可以在开头添加#!/ usr / bin / whatever 行,它们将使用该解释器执行,但C需要编译,不能解释。