diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-06-24 13:36:31 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2014-06-24 13:36:31 +0000 |
commit | 104e5f67e2c3b714607baa435f8bf8c72e0ba443 (patch) | |
tree | 7609436df5288e94ca0aced7f594c04674cbcec4 /llvm/include/llvm-c | |
parent | f59b3c1d90dc651ca2162df3f6e3e02f053a2539 (diff) | |
download | bcm5719-llvm-104e5f67e2c3b714607baa435f8bf8c72e0ba443.tar.gz bcm5719-llvm-104e5f67e2c3b714607baa435f8bf8c72e0ba443.zip |
Revert r211287, "Remove support for LLVM runtime multi-threading."
libclang still requires it on cygming, lack of incomplete <mutex>.
llvm-svn: 211592
Diffstat (limited to 'llvm/include/llvm-c')
-rw-r--r-- | llvm/include/llvm-c/Core.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/llvm/include/llvm-c/Core.h b/llvm/include/llvm-c/Core.h index 8693a3020ab..0e78ed71fa9 100644 --- a/llvm/include/llvm-c/Core.h +++ b/llvm/include/llvm-c/Core.h @@ -2848,13 +2848,16 @@ void LLVMDisposePassManager(LLVMPassManagerRef PM); * @{ */ -/** Deprecated: Multi-threading can only be enabled/disabled with the compile - time define LLVM_ENABLE_THREADS. This function always returns - LLVMIsMultithreaded(). */ +/** Allocate and initialize structures needed to make LLVM safe for + multithreading. The return value indicates whether multithreaded + initialization succeeded. Must be executed in isolation from all + other LLVM api calls. + @see llvm::llvm_start_multithreaded */ LLVMBool LLVMStartMultithreaded(void); -/** Deprecated: Multi-threading can only be enabled/disabled with the compile - time define LLVM_ENABLE_THREADS. */ +/** Deallocate structures necessary to make LLVM safe for multithreading. + Must be executed in isolation from all other LLVM api calls. + @see llvm::llvm_stop_multithreaded */ void LLVMStopMultithreaded(void); /** Check whether LLVM is executing in thread-safe mode or not. |