Browse Source

Merge 8a97950241 into 8a7253575c

pull/44/merge
Roman Beránek 9 years ago
parent
commit
47c9daddd1
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      config/os/macosx/pThreadUtilities.h

+ 8
- 0
config/os/macosx/pThreadUtilities.h View File

@@ -66,7 +66,15 @@
#define __PTHREADUTILITIES_H__

#import "pthread.h"

#import <Availability.h>
#ifdef __MAC_OS_X_VERSION_MAX_ALLOWED
#if __MAC_OS_X_VERSION_MAX_ALLOWED >= 101100
#import <MacTypes.h>
#else
#import <CoreServices/../Frameworks/CarbonCore.framework/Headers/MacTypes.h>
#endif
#endif

#define THREAD_SET_PRIORITY 0
#define THREAD_SCHEDULED_PRIORITY 1


Loading…
Cancel
Save