diff options
author | Zachary Turner <zturner@google.com> | 2014-06-16 22:49:41 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2014-06-16 22:49:41 +0000 |
commit | ccbf3d01f031011c47a60eebc94580d9251ae272 (patch) | |
tree | 549b23618973ee1dc18cb980ac6860660e45ceba /llvm/include/llvm-c | |
parent | ff7d1f4af7bbfaaf2309a5a6cff1e8f82317ff30 (diff) | |
download | bcm5719-llvm-ccbf3d01f031011c47a60eebc94580d9251ae272.tar.gz bcm5719-llvm-ccbf3d01f031011c47a60eebc94580d9251ae272.zip |
Revert r211066, 211067, 211068, 211069, 211070.
These were committed accidentally from the wrong branch before having
a review sign-off.
llvm-svn: 211072
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. |