diff options
author | Mike Gerwitz <mike.gerwitz@ryansg.com> | 2022-01-19 15:41:28 -0500 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@ryansg.com> | 2022-01-19 15:41:28 -0500 |
commit | 4a3b86f480f44ac5d6e3f2fb93e203daae126e72 (patch) | |
tree | 0a1c6741c0dd715dabf7165e958e476ce568b0e8 /bin | |
parent | c72d908a3f05cb8768038285d750ebc52ddfd804 (diff) | |
download | tame-4a3b86f480f44ac5d6e3f2fb93e203daae126e72.tar.gz tame-4a3b86f480f44ac5d6e3f2fb93e203daae126e72.tar.bz2 tame-4a3b86f480f44ac5d6e3f2fb93e203daae126e72.zip |
tamed: Ignore SIGUSR2
This was originally going to tell tamed to redraw the runner status line,
but a different approach was taken.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/tame | 4 | ||||
-rwxr-xr-x | bin/tamed | 3 |
2 files changed, 0 insertions, 7 deletions
@@ -86,10 +86,6 @@ command-runner() date +%s > "$base/cmdstart" echo "$*" > "$base/cmdline" - # notify tamed that it should update any diagnostic display - #local -ri tamed_pid=$( < "$root/pid" ) - #kill -USR2 "$tamed_pid" - # all remaining arguments are passed to the runner echo "$*" > "$base/0" @@ -564,9 +564,6 @@ main() spawn-runner 0 "$root" trap "spawn-next-runner '$root'" USR1 - # runner report on SIGUSR2 - trap "runner-report-line '$root'" USR2 - # status line reporting on runners for TUI mode tui-runner-status-line & |