mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-24 00:34:44 +01:00
7 lines
128 B
C++
7 lines
128 B
C++
#include <mutex>
|
|
|
|
int main() {
|
|
std::recursive_mutex mtx;
|
|
std::lock_guard<std::recursive_mutex> lck(mtx);
|
|
return 0;
|
|
} |