Function: gdb-show-run-p

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

Signature

(gdb-show-run-p)

Documentation

Return t if "Run/continue" should be shown on the toolbar.

Source Code

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