Skip to content

Commit

Permalink
v4.7.2
Browse files Browse the repository at this point in the history
Explicitly check for and kill hss_sensor HAL components in stopPocketNC.sh
  • Loading branch information
Jake Danczyk committed Aug 17, 2020
1 parent 68d12c4 commit 7f2b578
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions stopPocketNC.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,8 @@ pgrep linuxcnc | while read -r pid ; do
echo "Timeout expired, force killing LinuxCNC process $pid"
kill -9 $pid
done

grep hss_sensors | while read -r pid ; do
echo "Timeout expired, force killing hss_sensors HAL component $pid"
kill -9 $pid
done

0 comments on commit 7f2b578

Please sign in to comment.