diff options
author | Greg Clayton <gclayton@apple.com> | 2014-02-13 23:34:38 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2014-02-13 23:34:38 +0000 |
commit | e98008cc587749568a6661931ed8973b64f7c2f7 (patch) | |
tree | edd79f6e2f5e7e6d92a76d7bb14f28ddab54bb95 /lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h | |
parent | 967bf5813fb609940fa06510ad70d48268c362d5 (diff) | |
download | bcm5719-llvm-e98008cc587749568a6661931ed8973b64f7c2f7.tar.gz bcm5719-llvm-e98008cc587749568a6661931ed8973b64f7c2f7.zip |
Fixed deadlocks that could occur when using python for breakpoints, operating system plugins, and other async python usage.
<rdar://problem/16054348>
<rdar://problem/16040833>
llvm-svn: 201372
Diffstat (limited to 'lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h')
-rw-r--r-- | lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h b/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h index 077039e50d5..3b7dd264dc6 100644 --- a/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h +++ b/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h @@ -93,6 +93,7 @@ protected: CreateThreadFromThreadInfo (lldb_private::PythonDictionary &thread_dict, lldb_private::ThreadList &core_thread_list, lldb_private::ThreadList &old_thread_list, + std::vector<bool> &core_used_map, bool *did_create_ptr); DynamicRegisterInfo * |