Function: gdb-show-stop-p

gdb-show-stop-p is a byte-compiled function defined in gdb-mi.el.gz.

Signature

(gdb-show-stop-p)

Documentation

Return t if "Stop" should be shown on the toolbar.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(defun gdb-show-stop-p ()
  "Return t if \"Stop\" should be shown on the toolbar."
  (or (and (or
            (not gdb-gud-control-all-threads)
            (not gdb-non-stop))
           gud-running)
      (and gdb-gud-control-all-threads
           (not (null gdb-running-threads-count))
           (> gdb-running-threads-count 0))))