Variable: gdb-threads-mode-hook

gdb-threads-mode-hook is a variable defined in gdb-mi.el.gz.

Value

nil

Documentation

Hook run after entering gdb-threads-mode.

No problems result if this variable is not bound. add-hook automatically binds it. (This is true for all hook variables.)

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)