diff options
author | Zachary Turner <zturner@google.com> | 2014-11-10 22:32:18 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2014-11-10 22:32:18 +0000 |
commit | 3985f891a3b6fa9fcbf3c44d629722778698e6a2 (patch) | |
tree | 18378a9325653c269bf3314f590fbd98032682c7 /lldb/source/Plugins/Process/Windows/ProcessMessages.h | |
parent | ba80da60c806bc2d7ae65bc557b519ebb2772901 (diff) | |
download | bcm5719-llvm-3985f891a3b6fa9fcbf3c44d629722778698e6a2.tar.gz bcm5719-llvm-3985f891a3b6fa9fcbf3c44d629722778698e6a2.zip |
[ProcessWindows] Notify process plugin when the launch succeeds.
llvm-svn: 221637
Diffstat (limited to 'lldb/source/Plugins/Process/Windows/ProcessMessages.h')
-rw-r--r-- | lldb/source/Plugins/Process/Windows/ProcessMessages.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/Windows/ProcessMessages.h b/lldb/source/Plugins/Process/Windows/ProcessMessages.h index d71f55f3749..6873ef81339 100644 --- a/lldb/source/Plugins/Process/Windows/ProcessMessages.h +++ b/lldb/source/Plugins/Process/Windows/ProcessMessages.h @@ -42,6 +42,15 @@ class ProcessMessageBase HostProcess m_process; }; +class ProcessMessageDebuggerConnected : public ProcessMessageBase +{ + public: + ProcessMessageDebuggerConnected(const HostProcess &process) + : ProcessMessageBase(process) + { + } +}; + class ProcessMessageExitProcess : public ProcessMessageBase { public: |