diff options
Diffstat (limited to 'lldb/scripts/interface/SBWatchpoint.i')
-rw-r--r-- | lldb/scripts/interface/SBWatchpoint.i | 21 |
1 files changed, 6 insertions, 15 deletions
diff --git a/lldb/scripts/interface/SBWatchpoint.i b/lldb/scripts/interface/SBWatchpoint.i index 2dff8d130c6..e11c4f213ca 100644 --- a/lldb/scripts/interface/SBWatchpoint.i +++ b/lldb/scripts/interface/SBWatchpoint.i @@ -43,10 +43,7 @@ public: GetID (); %feature("docstring", " - //------------------------------------------------------------------ - /// With -1 representing an invalid hardware index. - //------------------------------------------------------------------ - ") GetHardwareIndex; + With -1 representing an invalid hardware index.") GetHardwareIndex; int32_t GetHardwareIndex (); @@ -72,27 +69,21 @@ public: SetIgnoreCount (uint32_t n); %feature("docstring", " - //------------------------------------------------------------------ - /// Get the condition expression for the watchpoint. - //------------------------------------------------------------------ - ") GetCondition; + Get the condition expression for the watchpoint.") GetCondition; const char * GetCondition (); %feature("docstring", " - //-------------------------------------------------------------------------- - /// The watchpoint stops only if the condition expression evaluates to true. - //-------------------------------------------------------------------------- - ") SetCondition; - void + The watchpoint stops only if the condition expression evaluates to true.") SetCondition; + void SetCondition (const char *condition); - + bool GetDescription (lldb::SBStream &description, DescriptionLevel level); static bool EventIsWatchpointEvent (const lldb::SBEvent &event); - + static lldb::WatchpointEventType GetWatchpointEventTypeFromEvent (const lldb::SBEvent& event); |