diff options
author | Determinant <[email protected]> | 2018-07-19 20:07:16 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2018-07-19 20:07:16 -0400 |
commit | 928b2c1910bfe957a4cc31746aa395c9ed98006f (patch) | |
tree | 79429e7eebf4fe85e8aa5cfea1aaa741652fa3e2 /run_replicas.sh | |
parent | 3c355d7f9e7b491b9fc5af4516286ab4100238c6 (diff) |
...
Diffstat (limited to 'run_replicas.sh')
-rwxr-xr-x | run_replicas.sh | 3 |
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 |