Function: gdb-control-all-threads

gdb-control-all-threads is an interactive and byte-compiled function defined in gdb-mi.el.gz.

Signature

(gdb-control-all-threads)

Documentation

Switch to non-stop/A mode.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
;; These two are used for menu and toolbar
(defun gdb-control-all-threads ()
  "Switch to non-stop/A mode."
  (interactive)
  (setq gdb-gud-control-all-threads t)
  ;; Actually forcing the tool-bar to update.
  (force-mode-line-update)
  (message "Now in non-stop/A mode."))