Atom.io缺少sys / wait.h或允许fork()

时间:2018-09-26 19:35:44

标签: c concurrency atom-editor

我正在尝试学习如何使用fork()在c中同时运行算法。似乎在编译时atom.io不会添加sys / wait.h,但是当我完全相同的代码在学校服务器上运行时,它将可以正常编译。有没有一种方法可以将其他头文件添加到atom并允许它使用fork和wait?我在Windows 10上运行该程序,但是学校数据库使用的是UNIX,这会影响头文件吗?

这是我正在使用斐波那契进行测试的确切代码,并使用GCC minGW进行了编译

我得到了sys / wait.h的简单错误,没有这样的文件或目录,并且看来,如果我注释掉sys / wait,则“在此范围内不再声明waitpid”并且“在此范围内未声明Fork” “

#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
#include <sys/wait.h>

int main()
{

int a=0, b=1, n=a+b,i;

printf("Enter the number of a Fibonacci Sequence:\n");
scanf("%d", &i);

pid_t pid = fork();
if (pid == 0)
{
    printf("Child Fibonacci\n");
    printf("0 %d ",n);
    while (i>0) {
        n=a+b;
        printf("%d ", n);
        a=b;
        b=n;
        i--;
        if (i == 0) {
            printf("\nChild ends\n");
    }
 }
}
    else
    {
    printf("Parent is waiting for child to complete...\n");
    waitpid(pid, NULL, 0);
    printf("Parent ends\n");
}
return 0;
}

1 个答案:

答案 0 :(得分:0)

如果您使用的是Windows或GNU linux,请转到MinGW的include目录,然后查找文件。此问题与以下内容非常相似:Visual c++ doesn't have sys/wait.h