diff options
| author | Han Ming Ong <hanming@apple.com> | 2012-11-17 00:21:04 +0000 |
|---|---|---|
| committer | Han Ming Ong <hanming@apple.com> | 2012-11-17 00:21:04 +0000 |
| commit | ab3b8b22a157f98bab6260ddf2b88b05dcb4cd1e (patch) | |
| tree | 9232dcea9c6bef57d9d10297647ad9eb322b79af /lldb/tools/debugserver/source/RNBContext.h | |
| parent | f1b6177b62567cdda828b2cf25f04b7009274c91 (diff) | |
| download | bcm5719-llvm-ab3b8b22a157f98bab6260ddf2b88b05dcb4cd1e.tar.gz bcm5719-llvm-ab3b8b22a157f98bab6260ddf2b88b05dcb4cd1e.zip | |
<rdar://problem/12720514> Sub-TLF: Provide service to profile the inferior
This allows client to query profiling states on the inferior.
llvm-svn: 168228
Diffstat (limited to 'lldb/tools/debugserver/source/RNBContext.h')
| -rw-r--r-- | lldb/tools/debugserver/source/RNBContext.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lldb/tools/debugserver/source/RNBContext.h b/lldb/tools/debugserver/source/RNBContext.h index 0044d19ca9a..e8292bdc559 100644 --- a/lldb/tools/debugserver/source/RNBContext.h +++ b/lldb/tools/debugserver/source/RNBContext.h @@ -29,13 +29,15 @@ public: event_proc_thread_running = 0x02, // Sticky event_proc_thread_exiting = 0x04, event_proc_stdio_available = 0x08, - event_read_packet_available = 0x10, - event_read_thread_running = 0x20, // Sticky - event_read_thread_exiting = 0x40, + event_proc_profile_data = 0x10, + event_read_packet_available = 0x20, + event_read_thread_running = 0x40, // Sticky + event_read_thread_exiting = 0x80, normal_event_bits = event_proc_state_changed | event_proc_thread_exiting | event_proc_stdio_available | + event_proc_profile_data | event_read_packet_available | event_read_thread_exiting, |

