sim-se: Add default to SyscallDesc constructor
[gem5.git] / src / sim / root.hh
index db207a77b87edb4072e87f8a699ab3a3cf5ea581..c5f42b807616acbe5fb93a2cf6dda326cc874993 100644 (file)
@@ -103,16 +103,11 @@ class Root : public SimObject
 
     Root(Params *p);
 
-    /** Schedule the timesync event at loadState() so that curTick is correct
+    /** Schedule the timesync event at startup().
      */
-    void loadState(CheckpointIn &cp) override;
-
-    /** Schedule the timesync event at initState() when not unserializing
-     */
-    void initState() override;
+    void startup() override;
 
     void serialize(CheckpointOut &cp) const override;
-    void unserialize(CheckpointIn &cp) override;
 };
 
 #endif // __SIM_ROOT_HH__