mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-14 14:24:05 +00:00
[C++11] Make use of 'nullptr' in the Support library.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205697 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -21,7 +21,7 @@ using namespace llvm;
|
||||
|
||||
static bool multithreaded_mode = false;
|
||||
|
||||
static sys::Mutex* global_lock = 0;
|
||||
static sys::Mutex* global_lock = nullptr;
|
||||
|
||||
bool llvm::llvm_start_multithreaded() {
|
||||
#if LLVM_ENABLE_THREADS != 0
|
||||
@ -73,7 +73,7 @@ struct ThreadInfo {
|
||||
static void *ExecuteOnThread_Dispatch(void *Arg) {
|
||||
ThreadInfo *TI = reinterpret_cast<ThreadInfo*>(Arg);
|
||||
TI->UserFn(TI->UserData);
|
||||
return 0;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
void llvm::llvm_execute_on_thread(void (*Fn)(void*), void *UserData,
|
||||
@ -97,7 +97,7 @@ void llvm::llvm_execute_on_thread(void (*Fn)(void*), void *UserData,
|
||||
goto error;
|
||||
|
||||
// Wait for the thread and clean up.
|
||||
::pthread_join(Thread, 0);
|
||||
::pthread_join(Thread, nullptr);
|
||||
|
||||
error:
|
||||
::pthread_attr_destroy(&Attr);
|
||||
|
Reference in New Issue
Block a user