optimization...don't calloc the datarace tables every single time...it is really...
[model-checker.git] / snapshot-interface.h
index 1c4c32b0339c574bc7bde31096a78c2fec3a5932..c0db0d0c0990595beaea3f1af70933a0f97779a8 100644 (file)
 typedef unsigned int snapshot_id;
 
 typedef void (*VoidFuncPtr)();
-void initSnapShotLibrary(unsigned int numbackingpages,
+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;
@@ -31,7 +28,7 @@ class SnapshotStack {
   int backTrackBeforeStep(int seq_index);
   void snapshotStep(int seq_index);
 
- private: 
+ private:
   struct stackEntry * stack;
 };