1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Remove benaphore, use std::mutex on cygwin.

This commit is contained in:
Bartosz Taudul
2020-03-19 02:02:38 +01:00
parent fe32385a12
commit 59e859e59a
12 changed files with 0 additions and 365 deletions
-9
View File
@@ -10,15 +10,6 @@ namespace tracy
using TracyMutex = std::shared_mutex;
}
#elif defined __CYGWIN__
#include "tracy_benaphore.h"
namespace tracy
{
using TracyMutex = NonRecursiveBenaphore;
}
#else
#include <mutex>