Initializing variable which contains global snapshotting regions
[model-checker.git] / model.h
diff --git a/model.h b/model.h
index 8614563abd16314098c3a621cb7b73e54baede12..ffedb18b9c258e23600279c616765cee861ca632 100644 (file)
--- a/model.h
+++ b/model.h
@@ -3,6 +3,7 @@
 
 #include <list>
 #include <map>
+#include <vector>
 #include <cstddef>
 #include <ucontext.h>
 
@@ -66,6 +67,7 @@ private:
        std::map<int, class Thread *, std::less< int >, MyAlloc< std::pair< const int, class Thread * > > > thread_map;
        class TreeNode *rootNode, *currentNode;
        std::list<class Backtrack *, MyAlloc< class Backtrack * > > backtrack_list;
+       std::vector< std::pair< void *, size_t >, MyAlloc< std::pair< void *, size_t > > > global_vec;
 };
 
 extern ModelChecker *model;