2 #------------------------------------------------------------------------------
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
6 # \\ / A nd | Copyright (C) 1991-2009 OpenCFD Ltd.
8 #-------------------------------------------------------------------------------
10 # This file is part of OpenFOAM.
12 # OpenFOAM 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 2 of the License, or (at your
15 # option) any later version.
17 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
18 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 # You should have received a copy of the GNU General Public License
23 # along with OpenFOAM; if not, write to the Free Software Foundation,
24 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
30 # Collects user's process status information into file. File contains one
35 # state is one of 'RUNN' 'SUSP' 'OTHR',
36 # command is the argv[0]
38 # Tested on Linux,IRIX,SunOS
40 #-------------------------------------------------------------------------------
42 PROGNAME
=`basename $0`
43 TMPFILE
=/tmp
/${PROGNAME}$$.tmp
44 AWKFILE
=/tmp
/${PROGNAME}$$.
awk
46 if [ `uname -s` = Linux
]
56 echo "Error : $PROGNAME : insufficient arguments" 1>&2
67 #-- Force standards behaving ps
68 # Get info on all $USER processes
71 UNIX95
=a
; export UNIX95
80 ps
-e -o 'pid,f,s,comm' > $TMPFILE
83 ps
-e -o 'pid,flags,state,comm' > $TMPFILE
86 ps
-e -o 'pid,flag,state,comm' > $TMPFILE
90 rm -f $AWKFILE; touch $AWKFILE
93 echo '($2 == 40) || ($3 == "T") {print $1 " SUSP // " $4; next}' >> $AWKFILE
94 echo '($3 == "R") || ($3 == "S") || ($3 == "D") {print $1 " RUNN // " $4; next}' >> $AWKFILE
95 echo '{print $1 " OTHR // " $4}' >> $AWKFILE
98 echo '($3 == "T") {print $1 " SUSP // " $4; next}' >> $AWKFILE
99 echo '($3 == "R") || ($3 == "S") || ($3 == "D") {print $1 " RUNN // " $4; next}' >> $AWKFILE
100 echo '{print $1 " OTHR // " $4}' >> $AWKFILE
103 echo '($3 == "T") {print $1 " SUSP // " $4; next}' >> $AWKFILE
104 echo '($3 == "O") || ($3 == "S") || ($3 == "R") {print $1 " RUNN // " $4; next}' >> $AWKFILE
105 echo '{print $1 " OTHR // " $4}' >> $AWKFILE
108 echo "Error : $PROGNAME : unsupported achitecture $ARCH"
112 $ECHO "(" > $outputFile
113 tail +2 $TMPFILE |
awk -f $AWKFILE >> $outputFile
114 $ECHO ")" >> $outputFile
116 rm -f $TMPFILE $AWKFILE
118 #------------------------------------------------------------------------------