Lines Matching full:tenths
4 tenths=date\ +%s%1N
7 # Time out after $3 tenths of a second or 5 seconds if $3 is ""
11 start_time=$($tenths)
17 # Wait at most tm_out tenths of a second
18 if [ $(($($tenths) - start_time)) -ge $tm_out ] ; then
28 # Time out after $3 tenths of a second or 5 seconds if $3 is ""
33 start_time=$($tenths)
39 # Wait at most tm_out tenths of a second
40 if [ $(($($tenths) - start_time)) -ge $tm_out ] ; then
49 # Time out after $2 tenths of a second or 5 seconds if $2 is ""
53 start_time=$($tenths)
55 # Wait at most tm_out tenths of a second
56 if [ $(($($tenths) - start_time)) -ge $tm_out ] ; then
64 # Check if PID $1 is still running after $2 tenths of a second
69 start_time=$($tenths)
71 # Check for at least tm_out tenths of a second
72 if [ $(($($tenths) - start_time)) -gt $tm_out ] ; then