summaryrefslogtreecommitdiff
path: root/include/llvm-c
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2014-06-27 15:13:01 +0000
committerChandler Carruth <chandlerc@gmail.com>2014-06-27 15:13:01 +0000
commit39ea80cc564b22f46a2ae85450fdde35e2a59e89 (patch)
tree01f3dbb8908f241972c908b4015a80a8c64d6f4a /include/llvm-c
parent1edaab996f5390ab596167e527001dad4e2d3439 (diff)
downloadllvm-39ea80cc564b22f46a2ae85450fdde35e2a59e89.tar.gz
llvm-39ea80cc564b22f46a2ae85450fdde35e2a59e89.tar.bz2
llvm-39ea80cc564b22f46a2ae85450fdde35e2a59e89.tar.xz
Re-apply r211287: Remove support for LLVM runtime multi-threading.
I'll fix the problems in libclang and other projects in ways that don't require <mutex> until we sort out the cygwin situation. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211900 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm-c')
-rw-r--r--include/llvm-c/Core.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/include/llvm-c/Core.h b/include/llvm-c/Core.h
index 0e78ed71fa..8693a3020a 100644
--- a/include/llvm-c/Core.h
+++ b/include/llvm-c/Core.h
@@ -2848,16 +2848,13 @@ void LLVMDisposePassManager(LLVMPassManagerRef PM);
* @{
*/
-/** 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 */
+/** Deprecated: Multi-threading can only be enabled/disabled with the compile
+ time define LLVM_ENABLE_THREADS. This function always returns
+ LLVMIsMultithreaded(). */
LLVMBool LLVMStartMultithreaded(void);
-/** 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 */
+/** Deprecated: Multi-threading can only be enabled/disabled with the compile
+ time define LLVM_ENABLE_THREADS. */
void LLVMStopMultithreaded(void);
/** Check whether LLVM is executing in thread-safe mode or not.