X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=promise.cc;h=cbd45c2ffcf96f5398c49b29c4fdc2ef169c9b61;hb=ed57a438e07bae54e5ce1862c830461ddda626f2;hp=5197ed3a1e0376d1ea4f6060bcfa042f7cd4f0e9;hpb=872ca5527c4df3f59e09b7050fd9d099e73cd362;p=model-checker.git diff --git a/promise.cc b/promise.cc index 5197ed3..cbd45c2 100644 --- a/promise.cc +++ b/promise.cc @@ -4,7 +4,7 @@ bool Promise::increment_threads(thread_id_t tid) { unsigned int id=id_to_int(tid); - if (id>=synced_thread.size()) { + if ( id >= synced_thread.size() ) { synced_thread.resize(id+1, false); } if (synced_thread[id]) @@ -12,9 +12,9 @@ bool Promise::increment_threads(thread_id_t tid) { synced_thread[id]=true; enabled_type_t * enabled=model->get_scheduler()->get_enabled(); - + unsigned int sync_size=synced_thread.size(); for(unsigned int i=0;iget_num_threads();i++) { - if (!synced_thread[id] && (enabled[id] == THREAD_ENABLED)) + if ((i >= sync_size || !synced_thread[i]) && (enabled[i] != THREAD_DISABLED)) return false; } return true;