Function: proced-sort-time

proced-sort-time is an interactive and byte-compiled function defined in proced.el.gz.

Signature

(proced-sort-time &optional ARG)

Documentation

Sort Proced buffer by CPU time (TIME).

Prefix ARG controls sort order, see proced-sort-interactive.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/proced.el.gz
(defun proced-sort-time (&optional arg)
  "Sort Proced buffer by CPU time (TIME).
Prefix ARG controls sort order, see `proced-sort-interactive'."
  (interactive (list (or current-prefix-arg 'no-arg)) proced-mode)
  (proced-sort-interactive 'time arg))