Browse Source

1 more place to not set PTHREAD_PRIO_INHERIT for ARM

Signed-off-by: falkTX <falktx@falktx.com>
pull/117/head
falkTX 1 year ago
parent
commit
697d3340d4
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libs/juce5/source/modules/juce_core/native/juce_posix_SharedCode.h

+ 1
- 1
libs/juce5/source/modules/juce_core/native/juce_posix_SharedCode.h View File

@@ -48,7 +48,7 @@ WaitableEvent::WaitableEvent (const bool useManualReset) noexcept
pthread_mutexattr_t atts;
pthread_mutexattr_init (&atts);
#if ! JUCE_ANDROID
#if ! JUCE_ANDROID && ! JUCE_ARM
pthread_mutexattr_setprotocol (&atts, PTHREAD_PRIO_INHERIT);
#endif
pthread_mutex_init (&mutex, &atts);


Loading…
Cancel
Save