mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 22:28:18 +00:00
Workaround for an... interesting bug in Darwin's pthread_rwlock_init.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73806 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -13,6 +13,7 @@
|
|||||||
|
|
||||||
#include "llvm/Config/config.h"
|
#include "llvm/Config/config.h"
|
||||||
#include "llvm/System/RWMutex.h"
|
#include "llvm/System/RWMutex.h"
|
||||||
|
#include <cstring>
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
//=== WARNING: Implementation here must contain only TRULY operating system
|
//=== WARNING: Implementation here must contain only TRULY operating system
|
||||||
@@ -64,6 +65,12 @@ RWMutexImpl::RWMutexImpl()
|
|||||||
// Declare the pthread_rwlock data structures
|
// Declare the pthread_rwlock data structures
|
||||||
pthread_rwlock_t* rwlock =
|
pthread_rwlock_t* rwlock =
|
||||||
static_cast<pthread_rwlock_t*>(malloc(sizeof(pthread_rwlock_t)));
|
static_cast<pthread_rwlock_t*>(malloc(sizeof(pthread_rwlock_t)));
|
||||||
|
|
||||||
|
#ifdef __APPLE__
|
||||||
|
// Workaround a bug/mis-feature in Darwin's pthread_rwlock_init.
|
||||||
|
bzero(rwlock, sizeof(pthread_rwlock_t));
|
||||||
|
#endif
|
||||||
|
|
||||||
pthread_rwlockattr_t attr;
|
pthread_rwlockattr_t attr;
|
||||||
|
|
||||||
// Initialize the rwlock attributes
|
// Initialize the rwlock attributes
|
||||||
|
Reference in New Issue
Block a user