Next: GDB/MI Ada Exception Information, Previous: GDB/MI Frame Information, Up: GDB/MI Output Records [Contents][Index]
Whenever GDB has to report an information about a thread, it uses a tuple with the following fields. The fields are always present unless stated otherwise.
idThe global numeric id assigned to the thread by GDB.
target-idThe target-specific string identifying the thread.
detailsAdditional information about the thread provided by the target. It is supposed to be human-readable and not interpreted by the frontend. This field is optional.
nameThe name of the thread. If the user specified a name using the
thread name command, then this name is given. Otherwise, if
GDB can extract the thread name from the target, then that
name is given. If GDB cannot find the thread name, then this
field is omitted.
stateThe execution state of the thread, either ‘stopped’ or ‘running’, depending on whether the thread is presently running.
frameThe stack frame currently executing in the thread. This field is only present if the thread is stopped. Its format is documented in GDB/MI Frame Information.
coreThe value of this field is an integer number of the processor core the thread was last seen on. This field is optional.