aboutsummaryrefslogtreecommitdiff
path: root/run_replicas.sh
diff options
context:
space:
mode:
authorDeterminant <tederminant@gmail.com>2018-07-19 20:07:16 -0400
committerDeterminant <tederminant@gmail.com>2018-07-19 20:07:16 -0400
commit928b2c1910bfe957a4cc31746aa395c9ed98006f (patch)
tree79429e7eebf4fe85e8aa5cfea1aaa741652fa3e2 /run_replicas.sh
parent3c355d7f9e7b491b9fc5af4516286ab4100238c6 (diff)
...
Diffstat (limited to 'run_replicas.sh')
-rwxr-xr-xrun_replicas.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/run_replicas.sh b/run_replicas.sh
index a6cc553..52f33e8 100755
--- a/run_replicas.sh
+++ b/run_replicas.sh
@@ -6,6 +6,7 @@ fi
for i in "${rep[@]}"; do
echo "starting replica $i"
#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 &
+ gdb -ex r -ex bt -ex q --args ./hotstuff-app --conf hotstuff-sec${i}.conf > log${i} 2>&1 &
+ #./hotstuff-app --conf hotstuff-sec${i}.conf > log${i} 2>&1 &
done
wait