promise: move constructor out of header
[c11tester.git] / promise.h
index 8eec87bd4dbf7f32ec3ecdb95b4bf611f5559bf9..20aee036f99c3a6adad194b353846a524404ef1e 100644 (file)
--- a/promise.h
+++ b/promise.h
@@ -21,16 +21,7 @@ struct future_value {
 
 class Promise {
  public:
-       Promise(ModelAction *read, struct future_value fv) :
-               num_available_threads(0),
-               value(fv.value),
-               expiration(fv.expiration),
-               read(read),
-               write(NULL)
-       {
-               add_thread(fv.tid);
-               eliminate_thread(read->get_tid());
-       }
+       Promise(ModelAction *read, struct future_value fv);
        modelclock_t get_expiration() const { return expiration; }
        ModelAction * get_action() const { return read; }
        bool eliminate_thread(thread_id_t tid);
@@ -39,9 +30,10 @@ class Promise {
        bool has_failed() const;
        uint64_t get_value() const { return value; }
        void set_write(const ModelAction *act) { write = act; }
-       const ModelAction * get_write() { return write; }
-       int get_num_available_threads() { return num_available_threads; }
-       bool is_compatible(const ModelAction *write) const;
+       const ModelAction * get_write() const { return write; }
+       int get_num_available_threads() const { return num_available_threads; }
+       bool is_compatible(const ModelAction *act) const;
+       bool is_compatible_exclusive(const ModelAction *act) const;
 
        void print() const;