diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-11-04 01:26:25 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-11-04 01:26:25 +0000 |
commit | cdd4c5443e33a94bca9bed2b921d0984c43edd82 (patch) | |
tree | 864def1cb226e3f0d1979ab26e7f9634a73aa429 /llvm/lib/System | |
parent | 0fb841fd195aac6b7c55ab6d8e0136e0df1a8373 (diff) | |
download | bcm5719-llvm-cdd4c5443e33a94bca9bed2b921d0984c43edd82.tar.gz bcm5719-llvm-cdd4c5443e33a94bca9bed2b921d0984c43edd82.zip |
System: Add llvm_execute_on_thread, which does what it says.
- Primarily useful for running some code with a specified stack size, when
pthreads are available.
llvm-svn: 118222
Diffstat (limited to 'llvm/lib/System')
-rw-r--r-- | llvm/lib/System/Threading.cpp | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/llvm/lib/System/Threading.cpp b/llvm/lib/System/Threading.cpp index 466c4680264..3b0bc72eca9 100644 --- a/llvm/lib/System/Threading.cpp +++ b/llvm/lib/System/Threading.cpp @@ -62,3 +62,55 @@ void llvm::llvm_acquire_global_lock() { void llvm::llvm_release_global_lock() { if (multithreaded_mode) global_lock->release(); } + +#if defined(LLVM_MULTITHREADED) && defined(HAVE_PTHREAD_H) +#include <pthread.h> + +struct ThreadInfo { + void (*UserFn)(void *); + void *UserData; +}; +static void *ExecuteOnThread_Dispatch(void *Arg) { + ThreadInfo *TI = reinterpret_cast<ThreadInfo*>(Arg); + TI->UserFn(TI->UserData); + return 0; +} + +void llvm::llvm_execute_on_thread(void (*Fn)(void*), void *UserData, + unsigned RequestedStackSize) { + ThreadInfo Info = { Fn, UserData }; + pthread_attr_t Attr; + pthread_t Thread; + + // Construct the attributes object. + if (::pthread_attr_init(&Attr) != 0) + return; + + // Set the requested stack size, if given. + if (RequestedStackSize != 0) { + if (::pthread_attr_setstacksize(&Attr, RequestedStackSize) != 0) + goto error; + } + + // Construct and execute the thread. + if (::pthread_create(&Thread, &Attr, ExecuteOnThread_Dispatch, &Info) != 0) + goto error; + + // Wait for the thread and clean up. + ::pthread_join(Thread, 0); + + error: + ::pthread_attr_destroy(&Attr); +} + +#else + +// No non-pthread implementation, currently. + +void llvm::llvm_execute_on_thread(void (*Fn)(void*), void *UserData, + unsigned RequestedStackSize) { + (void) RequestedStackSize; + Fn(UserData); +} + +#endif |