aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support/Threading.h
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2009-06-16 17:33:51 +0000
committerOwen Anderson <resistor@mac.com>2009-06-16 17:33:51 +0000
commit4c7ac18fc9e9af51ea6362871589c13263526d7a (patch)
treeda867f4f03bba0f350b1f31e705ddfa611b8f9d7 /include/llvm/Support/Threading.h
parent3d0cbbe0ad592acb64788ac2157b5192b39b5fc6 (diff)
downloadexternal_llvm-4c7ac18fc9e9af51ea6362871589c13263526d7a.tar.gz
external_llvm-4c7ac18fc9e9af51ea6362871589c13263526d7a.tar.bz2
external_llvm-4c7ac18fc9e9af51ea6362871589c13263526d7a.zip
Split the thread-related APIs out into their own file, and add a few more
calls for convenience. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@73512 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support/Threading.h')
-rw-r--r--include/llvm/Support/Threading.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/include/llvm/Support/Threading.h b/include/llvm/Support/Threading.h
new file mode 100644
index 0000000000..400de14082
--- /dev/null
+++ b/include/llvm/Support/Threading.h
@@ -0,0 +1,45 @@
+//===-- llvm/Support/Threading.h - Control multithreading mode --*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// TThis file defines llvm_start_multithreaded() and friends.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef LLVM_SUPPORT_THREADING_H
+#define LLVM_SUPPORT_THREADING_H
+
+namespace llvm {
+ /// llvm_start_multithreaded - Allocate and initialize structures needed to
+ /// make LLVM safe for multithreading. The return value indicates whether
+ /// multithreaded initialization succeeded. LLVM will still be operational
+ /// on "failed" return, and will still be safe for hosting threading
+ /// applications in the JIT, but will not be safe for concurrent calls to the
+ /// LLVM APIs.
+ /// THIS MUST EXECUTE IN ISOLATION FROM ALL OTHER LLVM API CALLS.
+ bool llvm_start_multithreaded();
+
+ /// llvm_stop_multithreaded - Deallocate structures necessary to make LLVM
+ /// safe for multithreading.
+ /// THIS MUST EXECUTE IN ISOLATION FROM ALL OTHER LLVM API CALLS.
+ void llvm_stop_multithreaded();
+
+ /// llvm_is_multithreaded - Check whether LLVM is executing in thread-safe
+ /// mode or not.
+ bool llvm_is_multithreaded();
+
+ /// acquire_global_lock - Acquire the global lock. This is a no-op if called
+ /// before llvm_start_multithreaded().
+ void llvm_acquire_global_lock();
+
+ /// release_global_lock - Release the global lock. This is a no-op if called
+ /// before llvm_start_multithreaded().
+ void llvm_release_global_lock();
+}
+
+#endif \ No newline at end of file