Lines Matching full:thread
24 - tid : thread ID (mandatory)
25 - name : thread name (optional key/value pair)
26 - queue : thread dispatch queue name (optional key/value pair)
27 - state : thread state (mandatory, set to 'stopped' for now)
28 - core : the index of the core (lldb) thread that this OS Thread should shadow
29 - stop_reason : thread stop reason. (mandatory, usually set to 'none')
31 - 'breakpoint': thread is stopped at a breakpoint
32 - 'none': thread is stopped because the process is stopped
33 - 'trace': thread is stopped after single stepping
36 Specifying this key/value pair for a thread will avoid a call to get_register_data()
37 and can be used when your registers are in a thread context structure that is contiguous
48 process (lldb.SBProcess): The process owning this thread.
56 """Lazily create an operating system thread using a thread information
57 dictionary and an optional operating system thread context address.
62 tid (int): Thread ID to get `thread_info` dictionary for.
63 context (int): Address of the operating system thread struct.
67 for lldb to create a Thread object and add it to the process thread list.
75 thread list.
79 containing at least for each entry, the thread id, it's name,
87 """Get the operating system thread register context for given a thread
92 tid (int): Thread ID to get register context for.