diff options
Diffstat (limited to 'Microbenchmarks/CPU-DPU/run-alloc.sh')
-rwxr-xr-x | Microbenchmarks/CPU-DPU/run-alloc.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Microbenchmarks/CPU-DPU/run-alloc.sh b/Microbenchmarks/CPU-DPU/run-alloc.sh index 9c553b1..3ffd59e 100755 --- a/Microbenchmarks/CPU-DPU/run-alloc.sh +++ b/Microbenchmarks/CPU-DPU/run-alloc.sh @@ -2,7 +2,12 @@ NCORES=$(grep -c '^processor' /proc/cpuinfo) -trap "pkill -f 'stress -c ${NCORES}'" INT +cleanexit() { + pkill -f "stress -c ${NCORES}" + pkill -f mpstat +} + +trap cleanexit TERM INT set -e |