X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=promise.h;h=2ce3e297305125baa0a057da571cf266965b916e;hb=c832cb55af09e735821ae3463bc37c29d3fa27c8;hp=11719fc3b2c291307f61e9480205265436ca7b48;hpb=f4d77c40b4029cdc18f4aaa5a4e01dfbcfca5f7b;p=model-checker.git diff --git a/promise.h b/promise.h index 11719fc..2ce3e29 100644 --- a/promise.h +++ b/promise.h @@ -8,25 +8,40 @@ #define __PROMISE_H__ #include +#include "threads.h" -class ModelAction; +#include "model.h" class Promise { public: Promise(ModelAction *act, uint64_t value, modelclock_t expiration) : - value(value), expiration(expiration), read(act), numthreads(1) - { } + value(value), expiration(expiration), read(act), write(NULL) + { + increment_threads(act->get_tid()); + } modelclock_t get_expiration() const {return expiration;} ModelAction * get_action() const { return read; } - int increment_threads() { return ++numthreads; } + 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()) { + return false; + } + return synced_thread[id]; + } + uint64_t get_value() const { return value; } + void set_write(const ModelAction *act) { write = act; } + const ModelAction * get_write() { return write; } SNAPSHOTALLOC private: + std::vector synced_thread; const uint64_t value; const modelclock_t expiration; ModelAction * const read; - unsigned int numthreads; + const ModelAction * write; }; #endif