mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-16 12:24:03 +00:00
Add support for const thread locals.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74226 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -25,8 +25,8 @@ namespace llvm {
|
||||
using namespace sys;
|
||||
ThreadLocalImpl::ThreadLocalImpl() { }
|
||||
ThreadLocalImpl::~ThreadLocalImpl() { }
|
||||
void ThreadLocalImpl::setInstance(void* d) { data = d; }
|
||||
void* ThreadLocalImpl::getInstance() { return data; }
|
||||
void ThreadLocalImpl::setInstance(const void* d) { data = const_cast<void*>(d);}
|
||||
const void* ThreadLocalImpl::getInstance() { return data; }
|
||||
}
|
||||
#else
|
||||
|
||||
@ -53,13 +53,13 @@ ThreadLocalImpl::~ThreadLocalImpl() {
|
||||
delete key;
|
||||
}
|
||||
|
||||
void ThreadLocalImpl::setInstance(void* d) {
|
||||
void ThreadLocalImpl::setInstance(const void* d) {
|
||||
pthread_key_t* key = static_cast<pthread_key_t*>(data);
|
||||
int errorcode = pthread_setspecific(*key, d);
|
||||
assert(errorcode == 0);
|
||||
}
|
||||
|
||||
void* ThreadLocalImpl::getInstance() {
|
||||
const void* ThreadLocalImpl::getInstance() {
|
||||
pthread_key_t* key = static_cast<pthread_key_t*>(data);
|
||||
return pthread_getspecific(*key);
|
||||
}
|
||||
|
Reference in New Issue
Block a user