blob: 871e16bd0a180f67dfc2d3e5c511480dbae8b3f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
#
# Copyright (c) 2000,2003 Silicon Graphics, Inc. All Rights Reserved.
# Copyright (c) 2010 Aconex. All Rights Reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# This file is sourced by PCP scripts to set the environment
# variables defined in the file named $PCP_CONF (or /etc/pcp.conf
# if $PCP_CONF is not defined). Any variable already defined in
# the environment is not changed.
#
# Note: any variables NOT starting with PCP_ will be ignored.
# This is a security issue so don't change it.
# Note also, this variant of pcp.env is *only* used on Windows.
#
if [ -z "$PCP_ENV_DONE" ]
then
__CONF=${PCP_CONF-/etc/pcp.conf}
if [ ! -f "$__CONF" ]
then
echo "pcp.env: Fatal Error: \"$__CONF\" not found" >&2
exit 1
fi
export PCP_DIR=/c/MinGW/sys/1.0
export PCP_CONF=$PCP_DIR/etc/pcp.conf
eval export `PATH=/lib:$PATH $PCP_DIR/libexec/pcp/bin/pmconfig.exe -s`
export PATH="/sbin:/bin:/lib:/etc:${PCP_BIN_DIR}:${PCP_BINADM_DIR}:${PCP_SHARE_DIR}/bin:${PCP_SHARE_DIR}/lib:${PCP_PLATFORM_PATHS}"
export PCP_ENV_DONE=y
fi
mkaf() {
mkaf.sh $@
}
pmafm() {
pmafm.sh $@
}
pmsignal() {
pmsignal.sh $@
}
_get_pids_by_name()
{
if [ $# -ne 1 ]
then
echo "Usage: _get_pids_by_name process-name" >&2
exit 1
fi
# Algorithm ... all ps(1) variants have a time of the form MM:SS
# or HH:MM:SS or HH:MM.SS before the psargs field, so we're using
# this as the search anchor.
#
# Matches with $1 (process-name) occur if the first psarg is $1
# or ends in /$1 ... the matching uses sed's regular expressions,
# so passing a regex into $1 will work.
$PCP_PS_PROG $PCP_PS_ALL_FLAGS \
| sed -n \
-e 's/$/ /' \
-e 's/[ ][ ]*/ /g' \
-e 's/^ //' \
-e 's/^[^ ]* //' \
-e "/[0-9][:\.][0-9][0-9] *[^ ]*\\$1\.exe /s/ .*//p" \
-e "/[0-9][:\.][0-9][0-9] *[^ ]*\/$1 /s/ .*//p" \
-e "/[0-9][:\.][0-9][0-9] *$1\.exe /s/ .*//p" \
-e "/[0-9][:\.][0-9][0-9] *$1 /s/ .*//p"
}
|