summaryrefslogtreecommitdiff
path: root/sim/serialize.hh
diff options
context:
space:
mode:
Diffstat (limited to 'sim/serialize.hh')
-rw-r--r--sim/serialize.hh4
1 files changed, 1 insertions, 3 deletions
diff --git a/sim/serialize.hh b/sim/serialize.hh
index 09e91d816..bc40d0ad2 100644
--- a/sim/serialize.hh
+++ b/sim/serialize.hh
@@ -135,7 +135,6 @@ class Serializer
protected:
typedef std::list<Serializeable *> serlist_t;
serlist_t objects;
- std::string file;
std::ostream *output;
std::ostream &out() const;
@@ -149,7 +148,6 @@ class Serializer
public:
void serialize();
- const std::string &filename() const { return file; }
};
//
@@ -253,7 +251,7 @@ class Checkpoint
// Export checkpoint filename param so other objects can derive
// filenames from it (e.g., memory).
//
-std::string CheckpointFile();
+std::string CheckpointDir();
void SetupCheckpoint(Tick when, Tick period = 0);
#endif // __SERIALIZE_HH__