0

我正在尝试编译一个 c++ 项目。
我收到 mutex.h 丢失的错误。
1)在阅读帽子的Linux中,所有包括在哪里?
2)我在 eclispe 的什么地方包含它?

斯帕西瓦

4

1 回答 1

0

您没有提及您尝试使用哪种类型的互斥锁:

如果是 pthread 互斥锁,则:

#include <pthread.h>

如果它是 C++11 互斥体,那么:

#include <mutex>

(您还需要使用 编译-std=c++11)。

于 2013-06-23T08:59:05.713 回答