2 # SPDX-License-Identifier: GPL-2.0
6 # Wait for PID $1 to have $2 number of threads started
7 # Time out after $3 tenths of a second or 5 seconds if $3 is ""
10 tm_out
=$3 ; [ -n "${tm_out}" ] || tm_out
=50
12 while [ -e "/proc/$1/task" ] ; do
13 th_cnt
=$
(find "/proc/$1/task" -mindepth 1 -maxdepth 1 -printf x |
wc -c)
14 if [ "${th_cnt}" -ge "$2" ] ; then
17 # Wait at most tm_out tenths of a second
18 if [ $
(($
($tenths) - start_time
)) -ge $tm_out ] ; then
19 echo "PID $1 does not have $2 threads"
26 # Wait for perf record -vvv 2>$2 with PID $1 to start by looking at file $2
27 # It depends on capturing perf record debug message "perf record has started"
28 # Time out after $3 tenths of a second or 5 seconds if $3 is ""
29 wait_for_perf_to_start
()
31 tm_out
=$3 ; [ -n "${tm_out}" ] || tm_out
=50
32 echo "Waiting for \"perf record has started\" message"
34 while [ -e "/proc/$1" ] ; do
35 if grep -q "perf record has started" "$2" ; then
39 # Wait at most tm_out tenths of a second
40 if [ $
(($
($tenths) - start_time
)) -ge $tm_out ] ; then
41 echo "perf recording did not start"
48 # Wait for process PID %1 to exit
49 # Time out after $2 tenths of a second or 5 seconds if $2 is ""
50 wait_for_process_to_exit
()
52 tm_out
=$2 ; [ -n "${tm_out}" ] || tm_out
=50
54 while [ -e "/proc/$1" ] ; do
55 # Wait at most tm_out tenths of a second
56 if [ $
(($
($tenths) - start_time
)) -ge $tm_out ] ; then
57 echo "PID $1 did not exit as expected"
64 # Check if PID $1 is still running after $2 tenths of a second
65 # or 0.3 seconds if $2 is ""
68 tm_out
=$2 ; [ -n "${tm_out}" ] || tm_out
=3
70 while [ -e "/proc/$1" ] ; do
71 # Check for at least tm_out tenths of a second
72 if [ $
(($
($tenths) - start_time
)) -gt $tm_out ] ; then
76 echo "PID $1 exited prematurely"