diff options
author | Greg Clayton <gclayton@apple.com> | 2011-04-01 00:29:43 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-04-01 00:29:43 +0000 |
commit | 95bf0fd3abcefce429f40f875f0f9ae3b0deed9e (patch) | |
tree | bd49ef5193260ddda29ba21320f980d3a5f9c6f5 /lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | |
parent | ea6b81a2ad3d3757c2d748ccab28c0c661cc38ed (diff) | |
download | bcm5719-llvm-95bf0fd3abcefce429f40f875f0f9ae3b0deed9e.tar.gz bcm5719-llvm-95bf0fd3abcefce429f40f875f0f9ae3b0deed9e.zip |
Added the ability to get a broadcaster event name for a given broadcaster
event.
Modified the ProcessInfo structure to contain all process arguments. Using the
new function calls on MacOSX allows us to see the full process name, not just
the first 16 characters.
Added a new platform command: "platform process info <pid> [<pid> <pid> ...]"
that can be used to get detailed information for a process including all
arguments, user and group info and more.
llvm-svn: 128694
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index a2b17e56892..ec07fbee072 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -134,6 +134,8 @@ ProcessGDBRemote::ProcessGDBRemote(Target& target, Listener &listener) : m_local_debugserver (true), m_thread_observation_bps() { + m_async_broadcaster.SetEventName (eBroadcastBitAsyncThreadShouldExit, "async thread should exit"); + m_async_broadcaster.SetEventName (eBroadcastBitAsyncContinue, "async thread continue"); } //---------------------------------------------------------------------- |