diff options
author | Andrew Kaylor <andrew.kaylor@intel.com> | 2013-10-21 17:42:06 +0000 |
---|---|---|
committer | Andrew Kaylor <andrew.kaylor@intel.com> | 2013-10-21 17:42:06 +0000 |
commit | 6169453ba37ac353655f2475f336e66f31276752 (patch) | |
tree | 41bbad7ba9a1eb1b2afbc0157de173b7ab893733 /include | |
parent | 770530babc78e444bb6d0aadc87702ef138293fd (diff) | |
download | external_llvm-6169453ba37ac353655f2475f336e66f31276752.zip external_llvm-6169453ba37ac353655f2475f336e66f31276752.tar.gz external_llvm-6169453ba37ac353655f2475f336e66f31276752.tar.bz2 |
Improving MCJIT/RuntimeDyld thread safety
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193094 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/ExecutionEngine/ExecutionEngine.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ExecutionEngine/ExecutionEngine.h b/include/llvm/ExecutionEngine/ExecutionEngine.h index c78faa6..10b3fed 100644 --- a/include/llvm/ExecutionEngine/ExecutionEngine.h +++ b/include/llvm/ExecutionEngine/ExecutionEngine.h @@ -153,7 +153,7 @@ protected: void *(*LazyFunctionCreator)(const std::string &); public: - /// lock - This lock protects the ExecutionEngine, JIT, JITResolver and + /// lock - This lock protects the ExecutionEngine, MCJIT, JIT, JITResolver and /// JITEmitter classes. It must be held while changing the internal state of /// any of those classes. sys::Mutex lock; |