X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=snapshot-interface.h;h=9912a1b78f2beba07c08b624b483c71492fd9e3a;hb=aeaedd475a82cbb567f26ed524b2ad2e860e37b7;hp=e9746e1ebb35468ff20e0ea68fd9ee364a0e7cd6;hpb=c400af2b7dfb87ce64c86f2d2b6a37d02421b263;p=model-checker.git diff --git a/snapshot-interface.h b/snapshot-interface.h index e9746e1..9912a1b 100644 --- a/snapshot-interface.h +++ b/snapshot-interface.h @@ -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" @@ -9,8 +14,6 @@ void initSnapShotLibrary(unsigned int numbackingpages, unsigned int numsnapshots, unsigned int nummemoryregions, unsigned int numheappages, VoidFuncPtr entryPoint); -void SnapshotGlobalSegments(); - struct stackEntry { struct stackEntry *next; snapshot_id snapshotid; @@ -25,7 +28,7 @@ class SnapshotStack { int backTrackBeforeStep(int seq_index); void snapshotStep(int seq_index); - private: + private: struct stackEntry * stack; };