2 #------------------------------------------------------------------------------
4 # \\ / F ield | foam-extend: Open Source CFD
6 # \\ / A nd | For copyright notice see file Copyright
8 #------------------------------------------------------------------------------
10 # This file is part of foam-extend.
12 # foam-extend is free software: you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by the
14 # Free Software Foundation, either version 3 of the License, or (at your
15 # option) any later version.
17 # foam-extend is distributed in the hope that it will be useful, but
18 # WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 # General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with foam-extend. If not, see <http://www.gnu.org/licenses/>.
29 # Collects user's process status information into file. File contains one
34 # state is one of 'RUNN' 'SUSP' 'OTHR',
35 # command is the argv[0]
37 # Tested on Linux,IRIX,SunOS
39 #------------------------------------------------------------------------------
41 PROGNAME
=`basename $0`
42 TMPFILE
=/tmp
/${PROGNAME}$$.tmp
43 AWKFILE
=/tmp
/${PROGNAME}$$.
awk
45 if [ `uname -s` = Linux
]
55 echo "Error : $PROGNAME : insufficient arguments" 1>&2
66 #-- Force standards behaving ps
67 # Get info on all $USER processes
70 UNIX95
=a
; export UNIX95
79 ps
-e -o 'pid,f,s,comm' > $TMPFILE
82 ps
-e -o 'pid,flags,state,comm' > $TMPFILE
85 ps
-e -o 'pid,flag,state,comm' > $TMPFILE
89 rm -f $AWKFILE; touch $AWKFILE
92 echo '($2 == 40) || ($3 == "T") {print $1 " SUSP // " $4; next}' >> $AWKFILE
93 echo '($3 == "R") || ($3 == "S") || ($3 == "D") {print $1 " RUNN // " $4; next}' >> $AWKFILE
94 echo '{print $1 " OTHR // " $4}' >> $AWKFILE
97 echo '($3 == "T") {print $1 " SUSP // " $4; next}' >> $AWKFILE
98 echo '($3 == "R") || ($3 == "S") || ($3 == "D") {print $1 " RUNN // " $4; next}' >> $AWKFILE
99 echo '{print $1 " OTHR // " $4}' >> $AWKFILE
102 echo '($3 == "T") {print $1 " SUSP // " $4; next}' >> $AWKFILE
103 echo '($3 == "O") || ($3 == "S") || ($3 == "R") {print $1 " RUNN // " $4; next}' >> $AWKFILE
104 echo '{print $1 " OTHR // " $4}' >> $AWKFILE
107 echo "Error : $PROGNAME : unsupported achitecture $ARCH"
111 $ECHO "(" > $outputFile
112 tail +2 $TMPFILE |
awk -f $AWKFILE >> $outputFile
113 $ECHO ")" >> $outputFile
115 rm -f $TMPFILE $AWKFILE
117 #------------------------------------------------------------------------------