You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raise ValueError("cannot select frame from different thread")
58
+
self.SetSelectedFrame(frame.idx)
59
+
else:
60
+
self.SetSelectedFrame(frame)
61
+
48
62
id = property(GetThreadID, None, doc='''A read only property that returns the thread ID as an integer.''')
49
63
idx = property(GetIndexID, None, doc='''A read only property that returns the thread index ID as an integer. Thread index ID values start at 1 and increment as threads come and go and can be used to uniquely identify threads.''')
50
64
return_value = property(GetStopReturnValue, None, doc='''A read only property that returns an lldb object that represents the return value from the last stop (lldb.SBValue) if we just stopped due to stepping out of a function.''')
queue = property(GetQueueName, None, doc='''A read only property that returns the dispatch queue name of this thread as a string.''')
57
71
queue_id = property(GetQueueID, None, doc='''A read only property that returns the dispatch queue id of this thread as an integer.''')
58
72
stop_reason = property(GetStopReason, None, doc='''A read only property that returns an lldb enumeration value (see enumerations that start with "lldb.eStopReason") that represents the reason this thread stopped.''')
73
+
stop_reason_data = property(get_stop_reason_data, None, doc='''A read only property that returns the stop reason data as a list.''')
59
74
is_suspended = property(IsSuspended, None, doc='''A read only property that returns a boolean value that indicates if this thread is suspended.''')
60
75
is_stopped = property(IsStopped, None, doc='''A read only property that returns a boolean value that indicates if this thread is stopped but not exited.''')
76
+
selected_frame = property(GetSelectedFrame, set_selected_frame, doc='''A read/write property that gets and sets the selected frame of this SBThread.''')
children = property(get_value_child_list, None, doc='''A read only property that returns a list() of lldb.SBValue objects for the children of the value.''')
52
65
child = property(get_child_access_object, None, doc='''A read only property that returns an object that can access children of a variable by index (child_value = value.children[12]).''')
66
+
member = property(get_member_access_object, None, doc='''A read only property that returns an object that can access child members by name.''')
53
67
name = property(GetName, None, doc='''A read only property that returns the name of this value as a string.''')
54
68
type = property(GetType, None, doc='''A read only property that returns a lldb.SBType object that represents the type for this value.''')
55
69
size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this value.''')
0 commit comments