Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试编译一个 c++ 项目。 我收到 mutex.h 丢失的错误。 1)在阅读帽子的Linux中,所有包括在哪里? 2)我在 eclispe 的什么地方包含它?
斯帕西瓦
您没有提及您尝试使用哪种类型的互斥锁:
如果是 pthread 互斥锁,则:
#include <pthread.h>
如果它是 C++11 互斥体,那么:
#include <mutex>
(您还需要使用 编译-std=c++11)。
-std=c++11