annotate lisp/modes/view-process-system-specific.el @ 172:a38aed19690b

Added tag r20-3b12 for changeset 929b76928fce
author cvs
date Mon, 13 Aug 2007 09:47:55 +0200
parents 5a88923fcbfe
children 6075d714658b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
165
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
1 ;;; view-process-system-specific.el --- System specific stuff for view-process
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
2
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
3 ;; Copyright (C) 1995 Heiko Muenkel
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
4
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
5 ;; Author: Heiko Muenkel <muenkel@tnt.uni-hannover.de>
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
6 ;; Keywords: processes
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
7
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
8 ;; This file is part of XEmacs.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
9
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
10 ;;; $Id: view-process-system-specific.el,v 1.2 1997/06/26 02:31:06 steve Exp $
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
11
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
12 ;; XEmacs is free software; you can redistribute it and/or modify it
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
13 ;; under the terms of the GNU General Public License as published by
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
14 ;; the Free Software Foundation; either version 2, or (at your
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
15 ;; option) any later version.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
16
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
17 ;; XEmacs is distributed in the hope that it will be useful, but
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
18 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
20 ;; General Public License for more details.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
21
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
22 ;; You should have received a copy of the GNU General Public License
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
23 ;; along with XEmacs; see the file COPYING. if not, write to the Free
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
24 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
25 ;; 02111-1307, USA.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
26
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
27 ;;; Synched up with: Emacs 20.1.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
28
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
29 ;;; Commentary:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
30
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
31 ;; This file contains system specific stuff for the
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
32 ;; view-process-mode. It isn't necessary, that each systems has
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
33 ;; an entry in this file, because there are default values, which
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
34 ;; are used, if no entry exists.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
35
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
36 ;; Installation:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
37 ;;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
38 ;; Put this file in one of you lisp load path directories.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
39 ;;
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
40
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
41 ;;; Code:
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
42
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
43 (provide 'view-process-system-specific)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
44
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
45 (defvar View-process-specific-system-list
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
46 '(("linux" nil "bsd"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
47 nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
48 View-process-kill-signals-linux)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
49 ("sunos" "4" "bsd"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
50 View-process-field-name-descriptions-sunos4
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
51 View-process-kill-signals-sunos4)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
52 ("sunos" "5" "system-v"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
53 View-process-field-name-descriptions-sunos5
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
54 View-process-kill-signals-sunos5)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
55 ("irix" nil "system-v"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
56 View-process-field-name-descriptions-irix
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
57 View-process-kill-signals-irix)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
58 ("hp-ux" nil "system-v"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
59 View-process-field-name-descriptions-hpux
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
60 View-process-kill-signals-hpux)
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
61 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
62 "This is a list with all systems, for which specific information about
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
63 allowed signals and about the ps output exists. Set it to nil, if you don't
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
64 want to use this specific information.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
65 The first string of each sublist is the name of the system, the second
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
66 string is the mayor version number or nil. The third one determines,
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
67 if the ps command is BSD or System V like. The mayor version is only
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
68 necessary, if there are BSD and System V versions with the same system
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
69 names (SUN has done such a stupid system naming.), otherwise it is nil.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
70 The fifth entry is nil or the name of a special list with field name
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
71 descriptions. The sixth entry is nil or the name of a special list with
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
72 kill signals.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
73
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
74 ;;; signals
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
75
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
76 (defvar View-process-kill-signals-bsd nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
77 "An alist with the possible signals for the kill command for BSD
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
78 systems. It is only used, if the system type can't be determined or if
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
79 it is not in the `View-process-specific-system-list'.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
80
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
81 (defvar View-process-kill-signals-system-v nil
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
82 "An alist with the possible signals for the kill command for BSD
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
83 systems. It is only used, if the system type can't be determined or if
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
84 it is not in the `View-process-specific-system-list'.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
85
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
86 (defvar View-process-kill-signals-sunos4
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
87 '(("SIGHUP" "1") ("SIGINT" "2") ("SIGQUIT" "3") ("SIGILL" "4")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
88 ("SIGTRAP" "5") ("SIGIOT" "6") ("SIGABRT" "6") ("SIGEMT" "7")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
89 ("SIGFPE" "8") ("SIGKILL" "9") ("SIGBUS" "10") ("SIGSEGV" "11")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
90 ("SIGSYS" "12") ("SIGPIPE" "13") ("SIGALRM" "14") ("SIGTERM" "15")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
91 ("SIGURG" "16") ("SIGSTOP" "17") ("SIGTSTP" "18") ("SIGCONT" "19")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
92 ("SIGCHLD" "20") ("SIGCLD" "20") ("SIGTTIN" "21") ("SIGTTOU" "22")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
93 ("SIGIO" "23") ("SIGPOLL" "23") ("SIGXCPU" "24") ("SIGXFSZ" "25")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
94 ("SIGVTALRM" "26") ("SIGPROF" "27") ("SIGWINCH" "28")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
95 ("SIGLOST" "29") ("SIGUSR1" "30") ("SIGUSR2" "31")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
96 ("1" "1") ("2" "2") ("3" "3") ("4" "4") ("5" "5") ("6" "6") ("7" "7")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
97 ("8" "8") ("9" "9") ("10" "10") ("11" "11") ("12" "12") ("13" "13")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
98 ("14" "14") ("15" "15") ("16" "16") ("17" "17") ("18" "18")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
99 ("19" "19") ("20" "20") ("21" "21") ("22" "22") ("23" "23")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
100 ("24" "24") ("25" "25") ("26" "26") ("27" "27") ("28" "28")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
101 ("29" "29") ("30" "30") ("31" "31"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
102 "An alist with the possible signals for the kill command for SunOS 4.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
103 It may be that you've other signals on your system. Try to test
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
104 it with \"kill -l\" in a shell.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
105
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
106 (defvar View-process-kill-signals-sunos5
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
107 '(("SIGHUP" "1") ("SIGINT" "2") ("SIGQUIT" "3") ("SIGILL" "4")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
108 ("SIGTRAP" "5") ("SIGIOT" "6") ("SIGABRT" "6") ("SIGEMT" "7")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
109 ("SIGFPE" "8") ("SIGKILL" "9") ("SIGBUS" "10") ("SIGSEGV" "11")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
110 ("SIGSYS" "12") ("SIGPIPE" "13") ("SIGALRM" "14") ("SIGTERM" "15")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
111 ("SIGUSR1" "16") ("SIGUSR2" "17") ("SIGCHLD" "18") ("SIGCLD" "18")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
112 ("SIGPWR" "19") ("SIGWINCH" "20") ("SIGURG" "21") ("SIGPOLL" "22")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
113 ("SIGIO" "22") ("SIGSTOP" "23") ("SIGTSTP" "24") ("SIGCONT" "25")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
114 ("SIGTTIN" "26") ("SIGTTOU" "27") ("SIGVTALRM" "28") ("SIGPROF" "29")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
115 ("SIGXCPU" "30") ("SIGXFSZ" "31") ("SIGWAITING" "32") ("SIGLWP" "33")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
116 ("SIGFREEZE" "34") ("SIGTHAW" "36") ("SIGRTMIN" "36") ("SIGRTMAX" "43")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
117 ("1" "1") ("2" "2") ("3" "3") ("4" "4") ("5" "5") ("6" "6") ("7" "7")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
118 ("8" "8") ("9" "9") ("10" "10") ("11" "11") ("12" "12") ("13" "13")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
119 ("14" "14") ("15" "15") ("16" "16") ("17" "17") ("18" "18")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
120 ("19" "19") ("20" "20") ("21" "21") ("22" "22") ("23" "23")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
121 ("24" "24") ("25" "25") ("26" "26") ("27" "27") ("28" "28")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
122 ("29" "29") ("30" "30") ("31" "31") ("32" "32") ("33" "33")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
123 ("34" "34") ("36" "36") ("43" "43"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
124 "An alist with the possible signals for the kill command for SunOS 5.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
125 It may be that you've other signals on your system. Try to test
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
126 it with \"kill -l\" in a shell.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
127
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
128 (defvar View-process-kill-signals-irix
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
129 '(("SIGHUP" "1") ("SIGINT" "2") ("SIGQUIT" "3") ("SIGILL" "4")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
130 ("SIGTRAP" "5") ("SIGIOT" "6") ("SIGABRT" "6") ("SIGEMT" "7")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
131 ("SIGFPE" "8") ("SIGKILL" "9") ("SIGBUS" "10") ("SIGSEGV" "11")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
132 ("SIGSYS" "12") ("SIGPIPE" "13") ("SIGALRM" "14") ("SIGTERM" "15")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
133 ("SIGUSR1" "16") ("SIGUSR2" "17") ("SIGCLD" "18") ("SIGCHLD" "18")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
134 ("SIGPWR" "19") ("SIGWINCH" "20") ("SIGURG" "21") ("SIGPOLL" "22")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
135 ("SIGIO" "22") ("SIGSTOP" "23") ("SIGTSTP" "24") ("SIGCONT" "25")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
136 ("SIGTTIN" "26") ("SIGTTOU" "27") ("SIGVTALRM" "28") ("SIGPROF" "29")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
137 ("SIGXCPU" "30") ("SIGXFSZ" "31") ("SIG32" "32")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
138 ("1" "1") ("2" "2") ("3" "3") ("4" "4") ("5" "5") ("6" "6") ("7" "7")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
139 ("8" "8") ("9" "9") ("10" "10") ("11" "11") ("12" "12") ("13" "13")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
140 ("14" "14") ("15" "15") ("16" "16") ("17" "17") ("18" "18")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
141 ("19" "19") ("20" "20") ("21" "21") ("22" "22") ("23" "23")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
142 ("24" "24") ("25" "25") ("26" "26") ("27" "27") ("28" "28")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
143 ("29" "29") ("30" "30") ("31" "31") ("32" "32"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
144 "An alist with the possible signals for the kill command for IRIX.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
145 It may be that you've other signals on your system. Try to test
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
146 it with \"kill -l\" in a shell.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
147
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
148 (defvar View-process-kill-signals-linux
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
149 '(("SIGHUP" "1") ("SIGINT" "2") ("SIGQUIT" "3") ("SIGILL" "4")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
150 ("SIGTRAP" "5") ("SIGIOT" "6") ("SIGBUS" "7") ("SIGFPE" "8")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
151 ("SIGKILL" "9") ("SIGUSR1" "10") ("SIGSEGV" "11") ("SIGUSR2" "12")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
152 ("SIGPIPE" "13") ("SIGALRM" "14") ("SIGTERM" "15") ("SIGCHLD" "17")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
153 ("SIGCONT" "18") ("SIGSTOP" "19") ("SIGTSTP" "20") ("SIGTTIN" "21")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
154 ("SIGTTOU" "22") ("SIGIO" "23") ("SIGXCPU" "24") ("SIGXFSZ" "25")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
155 ("SIGVTALRM" "26") ("SIGPROF" "27") ("SIGWINCH" "28") ("SIGPWR" "30")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
156 ("1" "1") ("2" "2") ("3" "3") ("4" "4") ("5" "5") ("6" "6") ("7" "7")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
157 ("8" "8") ("9" "9") ("10" "10") ("11" "11") ("12" "12") ("13" "13")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
158 ("14" "14") ("15" "15") ("17" "17") ("18" "18") ("19" "19")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
159 ("20" "20") ("21" "21") ("22" "22") ("23" "23") ("24" "24")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
160 ("25" "25") ("26" "26") ("27" "27") ("28" "28") ("30" "30"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
161 "An alist with the possible signals for the kill command for linux.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
162 It may be that you've other signals on your system. Try to test
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
163 it with \"kill -l\" in a shell.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
164
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
165 ;; all Linux signals
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
166 ;(defvar View-process-kill-signals
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
167 ; '(("SIGHUP" "1") ("SIGINT" "2") ("SIGQUIT" "3") ("SIGILL" "4")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
168 ; ("SIGTRAP" "5") ("SIGIOT" "6") ("SIGBUS" "7") ("SIGFPE" "8")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
169 ; ("SIGKILL" "9") ("SIGUSR1" "10") ("SIGSEGV" "11") ("SIGUSR2" "12")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
170 ; ("SIGPIPE" "13") ("SIGALRM" "14") ("SIGTERM" "15") ("SIGCHLD" "17")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
171 ; ("SIGCONT" "18") ("SIGSTOP" "19") ("SIGTSTP" "20") ("SIGTTIN" "21")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
172 ; ("SIGTTOU" "22") ("SIGIO" "23") ("SIGXCPU" "24") ("SIGXFSZ" "25")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
173 ; ("SIGVTALRM" "26") ("SIGPROF" "27") ("SIGWINCH" "28") ("SIGPWR" "30")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
174 ; ("1" "1") ("2" "2") ("3" "3") ("4" "4") ("5" "5") ("6" "6") ("7" "7")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
175 ; ("8" "8") ("9" "9") ("10" "10") ("11" "11") ("12" "12") ("13" "13")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
176 ; ("14" "14") ("15" "15") ("17" "17") ("18" "18") ("19" "19")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
177 ; ("20" "20") ("21" "21") ("22" "22") ("23" "23") ("24" "24")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
178 ; ("25" "25") ("26" "26") ("27" "27") ("28" "28") ("30" "30"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
179 ; "An alist with the possible signals for the kill command.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
180 ;It may be that you've other signals on your system. Try to test
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
181 ;it with \"kill -l\" in a shell.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
182
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
183 (defvar View-process-kill-signals-hpux
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
184 '(("SIGHUP" "1") ("SIGINT" "2") ("SIGQUIT" "3") ("SIGILL" "4")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
185 ("SIGTRAP" "5") ("SIGIOT" "6") ("SIGABRT" "6") ("SIGEMT" "7")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
186 ("SIGFPE" "8") ("SIGKILL" "9") ("SIGBUS" "10") ("SIGSEGV" "11")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
187 ("SIGSYS" "12") ("SIGPIPE" "13") ("SIGALRM" "14") ("SIGTERM" "15")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
188 ("SIGUSR1" "16") ("SIGUSR2" "17") ("SIGCLD" "18") ("SIGCHLD" "18")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
189 ("SIGPWR" "19") ("SIGVTALRM" "20") ("SIGPROF" "21") ("SIGIO" "22")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
190 ("SIGWINCH" "23") ("SIGSTOP" "24") ("SIGTSTP" "25") ("SIGCONT" "26")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
191 ("SIGTTIN" "27") ("SIGTTOU" "28") ("SIGURG" "29") ("SIGLOST" "30")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
192 ("1" "1") ("2" "2") ("3" "3") ("4" "4") ("5" "5") ("6" "6") ("7" "7")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
193 ("8" "8") ("9" "9") ("10" "10") ("11" "11") ("12" "12") ("13" "13")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
194 ("14" "14") ("15" "15") ("16" "16") ("17" "17") ("18" "18")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
195 ("19" "19") ("20" "20") ("21" "21") ("22" "22") ("23" "23")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
196 ("24" "24") ("25" "25") ("26" "26") ("27" "27") ("28" "28")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
197 ("29" "29") ("30" "30") ("31" "31") ("32" "32"))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
198 "An alist with the possible signals for the kill command for HP-UX.
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
199 It may be that you've other signals on your system. Try to test
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
200 it with \"kill -l\" in a shell.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
201
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
202 ;;; process field descriptions
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
203
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
204 ;; more general descriptions for BSD and System V
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
205
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
206 (defvar View-process-field-name-descriptions-bsd
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
207 '(
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
208 ("CP" "Short-term CPU utilization factor (used in scheduling). ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
209 ("F" "Flags (in hex) associated with process as in <sys/proc.h>. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
210 ("LIM" ("Soft limit on memory used. "
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
211 ("xx" "xx=no limit. ")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
212 ("RE" "Residency time (seconds in core)")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
213 ("SIZE" "Virtual image size, size data+stack (in KByte).")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
214 ("SL" "Sleep time of the process (seconds blocked).")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
215 ("STAT" ("Status. "
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
216 ("R" "R=runnable. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
217 ("S" "S=sleeping < 20s. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
218 ("D" "D=un-interruptible wait (eg disk or NFS I/O). ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
219 ("T" "T=stopped. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
220 ("Z" "Z=zombie (terminated). ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
221 ("W" "W=Swapped out. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
222 ("I" "I=idle, sleeping > 20s. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
223 ("P" "P=Page Wait." )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
224 ("N" "N=started with nice. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
225 (">" ">=exceeded memory limit. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
226 ("SW" "S=sleeping. W=waiting on an event. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
227 ("IW" "I=intermediate status. W=waiting on an event. ")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
228 ("SZ" "Virtual image size, size data+stack (in KByte). ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
229 ("WCHAN" "Event on which process is waiting. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
230 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
231 "Help list with the descriptions of ps fields for BSD systems.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
232
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
233 (defvar View-process-field-name-descriptions-system-v
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
234 '(
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
235 ("C" "Processor utilization for scheduling. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
236 ("CLS" "Scheduling class. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
237 ("F" "Flags (in hex) No meaning should be currently ascribed to them. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
238 ("PRI" "Priority, without -c: no > => prio <, with -c: no > => prio > .")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
239 ("S" ("State. "
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
240 ("O" "O=Process is running on a processor. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
241 ("S" "S=Sleeping, process is waiting for an event. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
242 ("R" "R=Runnable, process is on run queue. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
243 ("I" "I=Idle, process is being created. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
244 ("Z" "Z=Zombie state, process terminated and parent not waiting. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
245 ("T" "T=Traced, process stopped by a signal, parent is tracing it. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
246 ("X" "X=SXBRK state: process is waiting for more primary memory. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
247 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
248 ("STIME" "Start time. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
249 ("SZ" "Size (in Pages) of the swappable process's image in main memory. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
250 ("WCHAN" "Event on which process is waiting or in SXBRK state. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
251 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
252 "Help list with the descriptions of ps fields for System V.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
253
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
254 ;; for specifc systems
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
255
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
256 (defvar View-process-field-name-descriptions-sunos4
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
257 '(
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
258 ("CP" "Short-term CPU utilization factor (used in scheduling). ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
259 ("F" "Flags (in hex) associated with process as in <sys/proc.h>. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
260 ("LIM" ("Soft limit on memory used. "
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
261 ("xx" "xx=no limit. ")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
262 ("RE" "Residency time (seconds in core)")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
263 ("SIZE" "Virtual image size, size data+stack (in KByte).")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
264 ("SL" "Sleep time of the process (seconds blocked).")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
265 ("STAT" ("Status. "
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
266 ("R" "R=runnable. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
267 ("S" "S=sleeping < 20s. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
268 ("D" "D=un-interruptible wait (eg disk or NFS I/O). ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
269 ("T" "T=stopped. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
270 ("Z" "Z=zombie (terminated). ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
271 ("W" "W=Swapped out. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
272 ("I" "I=idle, sleeping > 20s. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
273 ("P" "P=Page Wait." )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
274 ("N" "N=started with nice. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
275 (">" ">=exceeded memory limit. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
276 ("SW" "S=sleeping. W=waiting on an event. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
277 ("IW" "I=intermediate status. W=waiting on an event. ")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
278 ("SZ" "Virtual image size, size data+stack (in KByte). ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
279 ("WCHAN" "Event on which process is waiting. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
280 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
281 "Help list with the descriptions of ps fields for SunOS 4.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
282
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
283 (defvar View-process-field-name-descriptions-sunos5
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
284 '(
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
285 ("C" "Processor utilization for scheduling. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
286 ("CLS" "Scheduling class. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
287 ("F" "Flags (in hex) No meaning should be currently ascribed to them. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
288 ("PRI" "Priority, without -c: no > => prio <, with -c: no > => prio > .")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
289 ("S" ("State. "
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
290 ("O" "O=Process is running on a processor. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
291 ("S" "S=Sleeping, process is waiting for an event. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
292 ("R" "R=Runnable, process is on run queue. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
293 ("I" "I=Idle, process is being created. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
294 ("Z" "Z=Zombie state, process terminated and parent not waiting. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
295 ("T" "T=Traced, process stopped by a signal, parent is tracing it. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
296 ("X" "X=SXBRK state: process is waiting for more primary memory. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
297 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
298 ("STIME" "Start time. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
299 ("SZ" "Size (in Pages) of the swappable process's image in main memory. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
300 ("WCHAN" "Event on which process is waiting or in SXBRK state. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
301 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
302 "Help list with the descriptions of ps fields for SunOS 5.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
303
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
304 (defvar View-process-field-name-descriptions-irix
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
305 '(
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
306 ("F" ("Flags. "
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
307 ("01" "01=Process is a system (resident) process. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
308 ("02" "02=Process is being traced. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
309 ("04" "04=Stopped process has been given to parent via wait. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
310 ("08" "08=Process is sleeping at a non-interruptible priority. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
311 ("10" "10=Process is in core. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
312 ("20" "20=Process user area is in core. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
313 ("40" "40=Process has enabled atomic operator emulation. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
314 ("80" "80=Process in stream poll or select. ")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
315 ("C" "Processor utilization for scheduling. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
316 ("CLS" "Scheduling class. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
317 ("COMD" "The command name. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
318 ("P" "Number of processor on which the process is executing. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
319 ("RSS" "Total resident size (in pages/4096 Bytes) of process. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
320 ("S" ("State. "
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
321 ("0" "0=Process is running on a processor. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
322 ("S" "S=Process is sleeping, waiting for a resource. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
323 ("R" "R=Process is running. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
324 ("Z" "Z=Process is terminated and parent not waiting. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
325 ("T" "T=Process is stopped. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
326 ("I" "I=Process is in intermediate state of creation. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
327 ("X" "X=Process is waiting for memory. ")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
328 ("STIME" "The starting time of the process. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
329 ("SZ" "Total size (in pages/4096 Bytes) of the process. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
330 ("WCHAN" "Event on which process is waiting. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
331 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
332 "Help list with the descriptions of ps fields for IRIX.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
333
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
334 (defvar View-process-field-name-descriptions-hpux
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
335 '(
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
336 ("F" ("Flags. "
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
337 ("00" "00=Process is swapped. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
338 ("01" "01=Process is in core. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
339 ("02" "01=Process is a system process. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
340 ("04" "04=Process is locked in core (e.g., for physical I/O). ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
341 ("10" "10=Process is being traced by another process. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
342 ("20" "20=Process is being traced by another process. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
343 ;; another tracing flag
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
344 ))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
345 ("UID"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
346 "Real user ID number of the process owner. Login name under the -f option. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
347 ("PID" "The process ID of the process. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
348 ("PPID" "The process ID of the parent process. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
349 ("PRI" "The priority of the process; higher numbers mean lower priority. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
350 ("NI" "Nice value; used in priority computation. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
351 ("ADDR" "Memory address of the process, if resident, or disk address. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
352 ("TTY" "The controlling terminal for the process. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
353 ("TIME" "The cumulative execution time for the process [min:sec]. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
354 ("STIME"
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
355 "Starting time of the process, or starting date if elapsed > 24h. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
356 ("C" "Processor utilization for scheduling. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
357 ("COMD" "The command name. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
358 ("COMMAND" "The command name. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
359 ("S" ("State. "
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
360 ("0" "0=Process is non-existing. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
361 ("S" "S=Process is sleeping. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
362 ("W" "Process is waiting for a resource. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
363 ("R" "R=Process is running. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
364 ("Z" "Z=Process is terminated and parent not waiting. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
365 ("T" "T=Process is stopped. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
366 ("I" "I=Process is in intermediate state of creation. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
367 ("X" "X=Process is waiting for memory. ")))
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
368 ("SZ" "Total size (in pages/4096 Bytes) of the process. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
369 ("WCHAN" "Event on which process is waiting. ")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
370 )
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
371 "Help list with the descriptions of ps fields for HP-UX.")
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
372
5a88923fcbfe Import from CVS: tag r20-3b9
cvs
parents:
diff changeset
373 ;;; view-process-system-specific.el ends here.