summaryrefslogtreecommitdiffstats
path: root/lldb/include/lldb/API/SBBreakpoint.h
diff options
context:
space:
mode:
authorJim Ingham <jingham@apple.com>2010-06-18 01:47:08 +0000
committerJim Ingham <jingham@apple.com>2010-06-18 01:47:08 +0000
commit62b02c61c9ccc6c71896db561ec2176f5b0e149a (patch)
tree2429402328a84242aad71f059f6801bd9831a097 /lldb/include/lldb/API/SBBreakpoint.h
parentf3aea7aecf036de6f3ef11f7d6ef952adf6e01d8 (diff)
downloadbcm5719-llvm-62b02c61c9ccc6c71896db561ec2176f5b0e149a.tar.gz
bcm5719-llvm-62b02c61c9ccc6c71896db561ec2176f5b0e149a.zip
Adding setting thread specific breakpoints by name, ID, index & queue name to the SB interfaces.
llvm-svn: 106268
Diffstat (limited to 'lldb/include/lldb/API/SBBreakpoint.h')
-rw-r--r--lldb/include/lldb/API/SBBreakpoint.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/lldb/include/lldb/API/SBBreakpoint.h b/lldb/include/lldb/API/SBBreakpoint.h
index 142d26e869c..3b9642df4ee 100644
--- a/lldb/include/lldb/API/SBBreakpoint.h
+++ b/lldb/include/lldb/API/SBBreakpoint.h
@@ -79,6 +79,24 @@ public:
lldb::tid_t
GetThreadID ();
+
+ void
+ SetThreadIndex (uint32_t index);
+
+ uint32_t
+ GetThreadIndex() const;
+
+ void
+ SetThreadName (const char *thread_name);
+
+ const char *
+ GetThreadName () const;
+
+ void
+ SetQueueName (const char *queue_name);
+
+ const char *
+ GetQueueName () const;
void
SetCallback (BreakpointHitCallback callback, void *baton);
OpenPOWER on IntegriCloud