我想在C程序中同时运行2个函数。 经过一番搜索,我发现我必须使用pthread。 但是我不知道如何在VS 2013中使用它。我发现了一些帮助,但没有一个主题适用于我,并且在所有这些之后我得到了这个错误:
the program can't start because pthreadVC2.dll is missing from your computer. Try re installing the program to fix this problem.
顺便说一下,还有其他方法可以并行运行以下两个函数吗?
func1(){
...
}
func2(){
...
}
run( func1(), func2() )