diff options
Diffstat (limited to 'src/sim/process.hh')
-rw-r--r-- | src/sim/process.hh | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/sim/process.hh b/src/sim/process.hh index 2de83565c..82a84a935 100644 --- a/src/sim/process.hh +++ b/src/sim/process.hh @@ -153,7 +153,7 @@ class Process : public SimObject public: // inherit file descriptor map from another process (necessary for clone) - void inheritFdArray(Process *p); + void inheritFDArray(Process *p); // override of virtual SimObject method: register statistics virtual void regStats(); @@ -172,30 +172,30 @@ class Process : public SimObject virtual const char *progName() const { return "<unknown>"; } // generate new target fd for sim_fd - int alloc_fd(int sim_fd, const std::string& filename, int flags, int mode, - bool pipe); + int allocFD(int sim_fd, const std::string& filename, int flags, int mode, + bool pipe); // disassociate target fd with simulator fd and cleanup subsidiary fields - void reset_fd_entry(int tgt_fd); + void resetFDEntry(int tgt_fd); // look up simulator fd for given target fd - int sim_fd(int tgt_fd); + int getSimFD(int tgt_fd); // look up fd entry for a given target fd - FDEntry *get_fd_entry(int tgt_fd); + FDEntry *getFDEntry(int tgt_fd); // look up target fd for given host fd // Assumes a 1:1 mapping between target file descriptor and host file // descriptor. Given the current API, this must be true given that it's // not possible to map multiple target file descriptors to the same host // file descriptor - int tgt_fd(int sim_fd); + int getTgtFD(int sim_fd); // fix all offsets for currently open files and save them - void fix_file_offsets(); + void fixFileOffsets(); // find all offsets for currently open files and save them - void find_file_offsets(); + void findFileOffsets(); // set the source of this read pipe for a checkpoint resume void setReadPipeSource(int read_pipe_fd, int source_fd); |