aboutsummaryrefslogtreecommitdiff
path: root/run_replicas.sh
diff options
context:
space:
mode:
authorDeterminant <[email protected]>2018-07-19 14:43:35 -0400
committerDeterminant <[email protected]>2018-07-19 14:43:35 -0400
commit95316118206aeed718ae6260ef9b5a1a4a6dacd8 (patch)
treec0b2df4c8f020bb076c276069da066a4f43c32f8 /run_replicas.sh
parent9e745354fe10f31b829f0c02a2aa464f391ffd19 (diff)
fix mem leak
Diffstat (limited to 'run_replicas.sh')
-rwxr-xr-xrun_replicas.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run_replicas.sh b/run_replicas.sh
index 213b6b7..450dac3 100755
--- a/run_replicas.sh
+++ b/run_replicas.sh
@@ -5,7 +5,7 @@ if [[ $# -gt 0 ]]; then
fi
for i in "${rep[@]}"; do
echo "starting replica $i"
- #valgrind ./hotstuff-app --conf hotstuff-sec${i}.conf > log${i} 2>&1 &
- ./hotstuff-app --conf hotstuff-sec${i}.conf > log${i} 2>&1 &
+ valgrind --leak-check=full ./hotstuff-app --conf hotstuff-sec${i}.conf > log${i} 2>&1 &
+ #./hotstuff-app --conf hotstuff-sec${i}.conf > log${i} 2>&1 &
done
wait