mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-15 17:00:26 +00:00
* lisp/simple.el (process-menu-mode, list-processes--refresh):
Include PID. (Bug#21725)
(cherry picked from commit b7adc2f237
)
This commit is contained in:
parent
b0c447e466
commit
a4285bcb11
@ -3749,6 +3749,7 @@ support pty association, if PROGRAM is nil."
|
|||||||
(define-derived-mode process-menu-mode tabulated-list-mode "Process Menu"
|
(define-derived-mode process-menu-mode tabulated-list-mode "Process Menu"
|
||||||
"Major mode for listing the processes called by Emacs."
|
"Major mode for listing the processes called by Emacs."
|
||||||
(setq tabulated-list-format [("Process" 15 t)
|
(setq tabulated-list-format [("Process" 15 t)
|
||||||
|
("PID" 7 t)
|
||||||
("Status" 7 t)
|
("Status" 7 t)
|
||||||
("Buffer" 15 t)
|
("Buffer" 15 t)
|
||||||
("TTY" 12 t)
|
("TTY" 12 t)
|
||||||
@ -3775,6 +3776,7 @@ Also, delete any process that is exited or signaled."
|
|||||||
(process-query-on-exit-flag p))
|
(process-query-on-exit-flag p))
|
||||||
(let* ((buf (process-buffer p))
|
(let* ((buf (process-buffer p))
|
||||||
(type (process-type p))
|
(type (process-type p))
|
||||||
|
(pid (if (process-id p) (format "%d" (process-id p)) "--"))
|
||||||
(name (process-name p))
|
(name (process-name p))
|
||||||
(status (symbol-name (process-status p)))
|
(status (symbol-name (process-status p)))
|
||||||
(buf-label (if (buffer-live-p buf)
|
(buf-label (if (buffer-live-p buf)
|
||||||
@ -3810,7 +3812,7 @@ Also, delete any process that is exited or signaled."
|
|||||||
(format " at %s b/s" speed)
|
(format " at %s b/s" speed)
|
||||||
"")))))
|
"")))))
|
||||||
(mapconcat 'identity (process-command p) " "))))
|
(mapconcat 'identity (process-command p) " "))))
|
||||||
(push (list p (vector name status buf-label tty cmd))
|
(push (list p (vector name pid status buf-label tty cmd))
|
||||||
tabulated-list-entries))))))
|
tabulated-list-entries))))))
|
||||||
|
|
||||||
(defun process-menu-visit-buffer (button)
|
(defun process-menu-visit-buffer (button)
|
||||||
|
Loading…
Reference in New Issue
Block a user