X-Git-Url: http://plrg.eecs.uci.edu/git/?p=c11tester.git;a=blobdiff_plain;f=snapshot-interface.h;h=9912a1b78f2beba07c08b624b483c71492fd9e3a;hp=e9746e1ebb35468ff20e0ea68fd9ee364a0e7cd6;hb=c1cc5e279bcba4216bde88a63dafac96d3ef47ba;hpb=c400af2b7dfb87ce64c86f2d2b6a37d02421b263 diff --git a/snapshot-interface.h b/snapshot-interface.h index e9746e1e..9912a1b7 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; };