Browse Source

DPF Mutex implementation is TODO on MSVC

Signed-off-by: falkTX <falktx@falktx.com>
pull/409/head
falkTX 3 years ago
parent
commit
106a857520
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 5 additions and 0 deletions
  1. +5
    -0
      distrho/extra/Mutex.hpp

+ 5
- 0
distrho/extra/Mutex.hpp View File

@@ -28,7 +28,12 @@
#endif

// FIXME make Mutex stop relying on pthread
#ifdef _MSC_VER
#define DISTRHO_OS_WINDOWS__TODO
#warning DPF Mutex implementation is TODO on MSVC
#else
#include <pthread.h>
#endif

START_NAMESPACE_DISTRHO



Loading…
Cancel
Save