From 14e0cf70049e2f98019b66559baccbd5c29554c4 Mon Sep 17 00:00:00 2001 From: Brian Norris Date: Thu, 3 Jan 2013 16:24:54 -0800 Subject: [PATCH] promise: style fixup --- promise.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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]; } -- 2.34.1