projects
/
model-checker.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f94de5b
)
model: debug print - pending release sequences
author
Brian Norris
<banorris@uci.edu>
Tue, 2 Oct 2012 01:15:12 +0000
(18:15 -0700)
committer
Brian Norris
<banorris@uci.edu>
Wed, 3 Oct 2012 02:02:05 +0000
(19:02 -0700)
model.cc
patch
|
blob
|
history
diff --git
a/model.cc
b/model.cc
index d0dc027150bc629a1df5a839d7c45c9ce1c4d5ee..4d6d7634bf26c58eb83e2070b99df902c05b41ba 100644
(file)
--- a/
model.cc
+++ b/
model.cc
@@
-188,6
+188,7
@@
bool ModelChecker::next_execution()
DBG();
num_executions++;
+
if (isfinalfeasible()) {
printf("Earliest divergence point since last feasible execution:\n");
if (earliest_diverge)
@@
-199,6
+200,9
@@
bool ModelChecker::next_execution()
num_feasible_executions++;
}
+ DEBUG("Number of acquires waiting on pending release sequences: %lu\n",
+ pending_acq_rel_seq->size());
+
if (isfinalfeasible() || DBG_ENABLED())
print_summary();