Function: gdb-threads-mode
gdb-threads-mode is an interactive and byte-compiled function defined
in gdb-mi.el.gz.
Signature
(gdb-threads-mode)
Documentation
Major mode for GDB threads.
In addition to any hooks its parent mode gdb-parent-mode might have
run, this mode runs the hook gdb-threads-mode-hook, as the final or
penultimate step during initialization.
<follow-link> mouse-face
<mouse-2> gdb-select-thread
D gdb-frame-disassembly-for-thread
F gdb-frame-stack-for-thread
L gdb-frame-locals-for-thread
R gdb-frame-registers-for-thread
RET gdb-select-thread
TAB #<anonymous-function>
c gdb-continue-thread
d gdb-display-disassembly-for-thread
f gdb-display-stack-for-thread
i gdb-interrupt-thread
l gdb-display-locals-for-thread
r gdb-display-registers-for-thread
s gdb-step-thread
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(define-derived-mode gdb-threads-mode gdb-parent-mode "Threads"
"Major mode for GDB threads."
(setq gdb-thread-position (make-marker))
(add-to-list 'overlay-arrow-variable-list 'gdb-thread-position)
(setq header-line-format gdb-threads-header)
(setq-local font-lock-defaults '(gdb-threads-font-lock-keywords))
'gdb-invalidate-threads)