Variable: gdb-discard-unordered-replies

gdb-discard-unordered-replies is a customizable variable defined in gdb-mi.el.gz.

Value

t

Documentation

Non-nil means discard any out-of-order GDB replies.

This protects against lost GDB replies, assuming that GDB always replies in the same order as Emacs sends commands. When receiving a reply with a given token-number, assume any pending messages with a lower token-number are out-of-order.

This variable was added, or its default value changed, in Emacs 24.4.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gdb-mi.el.gz
(defcustom gdb-discard-unordered-replies t
  "Non-nil means discard any out-of-order GDB replies.
This protects against lost GDB replies, assuming that GDB always
replies in the same order as Emacs sends commands.  When receiving a
reply with a given token-number, assume any pending messages with a
lower token-number are out-of-order."
  :type 'boolean
  :group 'gud
  :version "24.4")