Variable: eshell-process-list
eshell-process-list is a variable defined in esh-proc.el.gz.
Value
nil
Documentation
A list of the current status of subprocesses.
Each element has the form (PROC . SUBJOB-P), where PROC is the process object and SUBJOB-P is non-nil if the process is a subjob.
To add or remove elements of this list, see
eshell-record-process-object and eshell-remove-process-entry.
Source Code
;; Defined in /usr/src/emacs/lisp/eshell/esh-proc.el.gz
(defvar eshell-process-list nil
"A list of the current status of subprocesses.
Each element has the form (PROC . SUBJOB-P), where PROC is the
process object and SUBJOB-P is non-nil if the process is a
subjob.
To add or remove elements of this list, see
`eshell-record-process-object' and `eshell-remove-process-entry'.")