From: Brian Norris Date: Fri, 4 Jan 2013 00:24:54 +0000 (-0800) Subject: promise: style fixup X-Git-Tag: oopsla2013~375 X-Git-Url: http://demsky.eecs.uci.edu/git/?p=model-checker.git;a=commitdiff_plain;h=14e0cf70049e2f98019b66559baccbd5c29554c4 promise: style fixup --- diff --git a/promise.h b/promise.h index ea40df0..9ddaea8 100644 --- a/promise.h +++ b/promise.h @@ -16,18 +16,17 @@ class Promise { public: Promise(ModelAction *act, uint64_t value, modelclock_t expiration) : value(value), expiration(expiration), read(act), write(NULL) - { + { increment_threads(act->get_tid()); } - modelclock_t get_expiration() const {return expiration;} + modelclock_t get_expiration() const { return expiration; } ModelAction * get_action() const { return read; } bool increment_threads(thread_id_t tid); - bool has_sync_thread(thread_id_t tid) { - unsigned int id=id_to_int(tid); - if (id>=synced_thread.size()) { + bool has_sync_thread(thread_id_t tid) { + unsigned int id = id_to_int(tid); + if (id >= synced_thread.size()) return false; - } return synced_thread[id]; }