(1) add actions for the fence
[model-checker.git] / snapshot-interface.h
index 7e501fea4214292244273ebb806a3472591a8e09..9912a1b78f2beba07c08b624b483c71492fd9e3a 100644 (file)
@@ -1,3 +1,8 @@
+/** @file snapshot-interface.h
+ *  @brief C++ layer on top of snapshotting system.
+ */
+
+
 #ifndef __SNAPINTERFACE_H
 #define __SNAPINTERFACE_H
 #include "mymemory.h"
@@ -8,9 +13,6 @@ typedef void (*VoidFuncPtr)();
 void initSnapShotLibrary(unsigned int numbackingpages,
                unsigned int numsnapshots, unsigned int nummemoryregions,
                unsigned int numheappages, VoidFuncPtr entryPoint);
-void finalize();
-
-void SnapshotGlobalSegments();
 
 struct stackEntry {
   struct stackEntry *next;
@@ -26,7 +28,7 @@ class SnapshotStack {
   int backTrackBeforeStep(int seq_index);
   void snapshotStep(int seq_index);
 
- private: 
+ private:
   struct stackEntry * stack;
 };