我試圖在C++中使用fork()
和wait()
系統調用。操作系統
我的代碼非常簡單。但是,我收到以下錯誤:
error C3861: 'fork': identifier not found
我已經包含以下頭文件。我必須在這裏包含其他標題嗎?我做錯了什麼?
#include<stdafx.h>
#include <sys/types.h>
#include <signal.h>
int main(){
if(fork()==0)
{
printf("from child");
}
else
{
printf("from parent");
}
}
您使用的是什麼操作系統?在Windows上,fork()不起作用。嘗試使用cygwin。 – Alan 2011-04-02 03:03:08
http://stackoverflow.com/questions/15393218/error-c3861-tcsdup-identifier-not-found - 檢查這裏,如果這可以幫助你有點......! – 2015-01-14 11:06:57