Remove function that no longer can be used. We should figure out if we want to allow...
authorKevin Lim <ktlim@umich.edu>
Fri, 30 Jun 2006 01:34:01 +0000 (21:34 -0400)
committerKevin Lim <ktlim@umich.edu>
Fri, 30 Jun 2006 01:34:01 +0000 (21:34 -0400)
src/sim/pseudo_inst.cc:
    Remove the setup function from Checkpoint.  I'm not sure what we want to do with this pseudoinst.
src/sim/serialize.hh:
    Remove setup function.

--HG--
extra : convert_revision : 5ff494d816e2d8a7fe65a3d13037608003388d8f

src/sim/pseudo_inst.cc
src/sim/serialize.hh

index ae52cdd41284816108e7666464e129f0f311de44..b2854e491d0c9d722034ccadff76c40b7b151a84 100644 (file)
@@ -209,12 +209,6 @@ namespace AlphaPseudo
     {
         if (!doCheckpointInsts)
             return;
-
-
-        Tick when = curTick + delay * Clock::Int::ns;
-        Tick repeat = period * Clock::Int::ns;
-
-        Checkpoint::setup(when, repeat);
     }
 
     uint64_t
index 5a820b27eacd432af540ef27bff8c4ed0487b2cd..a80dc99e4c1fec99ffded6b1799a747ebb4a7ec0 100644 (file)
@@ -241,9 +241,6 @@ class Checkpoint
 
     // Filename for base checkpoint file within directory.
     static const char *baseFilename;
-
-    // Set up a checkpoint creation event or series of events.
-    static void setup(Tick when, Tick period = 0);
 };
 
 #endif // __SERIALIZE_HH__