diff options
author | Oleksiy Vyalov <ovyalov@google.com> | 2015-05-15 02:05:10 +0000 |
---|---|---|
committer | Oleksiy Vyalov <ovyalov@google.com> | 2015-05-15 02:05:10 +0000 |
commit | 9953f0886bd37abc37622857c530deec29f097aa (patch) | |
tree | 7575070d8eec20e07abc974b9e866c55c162519a /lldb/source/Plugins/Process/Windows/IDebugDelegate.h | |
parent | 2c2661456e3c89c2b2287c050515be3f5b906c87 (diff) | |
download | bcm5719-llvm-9953f0886bd37abc37622857c530deec29f097aa.tar.gz bcm5719-llvm-9953f0886bd37abc37622857c530deec29f097aa.zip |
Reverting r237392 since it broke TestNumThreads on ubuntu builder.
llvm-svn: 237415
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/IDebugDelegate.h')
-rw-r--r-- | lldb/source/Plugins/Process/Windows/IDebugDelegate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/Windows/IDebugDelegate.h b/lldb/source/Plugins/Process/Windows/IDebugDelegate.h index 6d864de7ed4..4efe1932919 100644 --- a/lldb/source/Plugins/Process/Windows/IDebugDelegate.h +++ b/lldb/source/Plugins/Process/Windows/IDebugDelegate.h @@ -35,7 +35,7 @@ class IDebugDelegate virtual void OnDebuggerConnected(lldb::addr_t image_base) = 0; virtual ExceptionResult OnDebugException(bool first_chance, const ExceptionRecord &record) = 0; virtual void OnCreateThread(const HostThread &thread) = 0; - virtual void OnExitThread(lldb::tid_t thread_id, uint32_t exit_code) = 0; + virtual void OnExitThread(const HostThread &thread) = 0; virtual void OnLoadDll(const ModuleSpec &module_spec, lldb::addr_t module_addr) = 0; virtual void OnUnloadDll(lldb::addr_t module_addr) = 0; virtual void OnDebugString(const std::string &string) = 0; |