commit | e544143f0324a45614bb041a491fd72e9be11b43 | [log] [tgz] |
---|---|---|
author | Ed Maste <emaste@freebsd.org> | Tue Sep 03 23:55:30 2013 +0000 |
committer | Ed Maste <emaste@freebsd.org> | Tue Sep 03 23:55:30 2013 +0000 |
tree | d1f3de539e6365c17e84f407d55b51cd3eefac3c | |
parent | cc7ee374e2a894dbbf706b43edbe5d232602c976 [diff] [blame] |
Clean up handling of FreeBSD thread list on Launch / Attach Instead of directly manipulating the thread list in Launch and Attach, just rely on RefreshStateAfterStop to populate the initial list. Review: http://llvm-reviews.chandlerc.com/D1565 llvm-svn: 189889
diff --git a/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp b/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp index 60a29e0..bdb7804 100644 --- a/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp +++ b/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp
@@ -218,6 +218,9 @@ case eInvalidMessage: str = "eInvalidMessage"; break; + case eAttachMessage: + str = "eAttachMessage"; + break; case eExitMessage: str = "eExitMessage"; break;