X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=model.h;h=1bd32a1fffcb926449f2b5fc7a11f7d74410cf34;hb=d96312573c237eb9648976be85de39261c9531c6;hp=7bc3585d8562eeff369cf307b81751781e381f6b;hpb=4ee37711afd0de98bc757ed4853a81d66a6a1533;p=model-checker.git diff --git a/model.h b/model.h index 7bc3585..1bd32a1 100644 --- a/model.h +++ b/model.h @@ -186,8 +186,8 @@ private: HashTable *lock_waiters_map; HashTable, uintptr_t, 4 > *obj_thrd_map; - std::vector *promises; - std::vector *futurevalues; + std::vector< Promise *, SnapshotAlloc > *promises; + std::vector< struct PendingFutureValue, SnapshotAlloc > *futurevalues; /** * List of pending release sequences. Release sequences might be @@ -195,9 +195,9 @@ private: * are established. Each entry in the list may only be partially * filled, depending on its pending status. */ - std::vector *pending_rel_seqs; + std::vector< struct release_seq *, SnapshotAlloc > *pending_rel_seqs; - std::vector *thrd_last_action; + std::vector< ModelAction *, SnapshotAlloc > *thrd_last_action; NodeStack *node_stack; /** Private data members that should be snapshotted. They are grouped