diff options
author | Curtis Dunham <Curtis.Dunham@arm.com> | 2015-07-03 10:14:34 -0400 |
---|---|---|
committer | Curtis Dunham <Curtis.Dunham@arm.com> | 2015-07-03 10:14:34 -0400 |
commit | e385ae0c72993d1d58256324d0fe425247fad207 (patch) | |
tree | d133e9497e8f08ed370a0fc425b2e8f561632156 /src/base/loader/object_file.hh | |
parent | d9f8f076135870de5382f2d2ec3b185b6ece6b16 (diff) | |
download | gem5-e385ae0c72993d1d58256324d0fe425247fad207.tar.xz |
base: remove fd from object loaders
All the object loaders directly examine the (already completely loaded
by object_file.cc) memory image. There is no current motivation to
keep the fd around.
Diffstat (limited to 'src/base/loader/object_file.hh')
-rw-r--r-- | src/base/loader/object_file.hh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/base/loader/object_file.hh b/src/base/loader/object_file.hh index 37f2aa585..e5961add2 100644 --- a/src/base/loader/object_file.hh +++ b/src/base/loader/object_file.hh @@ -69,15 +69,13 @@ class ObjectFile protected: const std::string filename; - int descriptor; uint8_t *fileData; size_t len; Arch arch; OpSys opSys; - ObjectFile(const std::string &_filename, int _fd, - size_t _len, uint8_t *_data, + ObjectFile(const std::string &_filename, size_t _len, uint8_t *_data, Arch _arch, OpSys _opSys); public: |