summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMicrobenchmarks/CPU-DPU/run-alloc.sh7
-rwxr-xr-xMicrobenchmarks/CPU-DPU/run-transfer.sh7
2 files changed, 12 insertions, 2 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
diff --git a/Microbenchmarks/CPU-DPU/run-transfer.sh b/Microbenchmarks/CPU-DPU/run-transfer.sh
index f835f0c..e247105 100755
--- a/Microbenchmarks/CPU-DPU/run-transfer.sh
+++ b/Microbenchmarks/CPU-DPU/run-transfer.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