summaryrefslogtreecommitdiff
path: root/src/base/loader/raw_object.hh
diff options
context:
space:
mode:
authorCurtis Dunham <Curtis.Dunham@arm.com>2015-07-03 10:14:34 -0400
committerCurtis Dunham <Curtis.Dunham@arm.com>2015-07-03 10:14:34 -0400
commite385ae0c72993d1d58256324d0fe425247fad207 (patch)
treed133e9497e8f08ed370a0fc425b2e8f561632156 /src/base/loader/raw_object.hh
parentd9f8f076135870de5382f2d2ec3b185b6ece6b16 (diff)
downloadgem5-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/raw_object.hh')
-rw-r--r--src/base/loader/raw_object.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/loader/raw_object.hh b/src/base/loader/raw_object.hh
index 9014a2d30..3865425d0 100644
--- a/src/base/loader/raw_object.hh
+++ b/src/base/loader/raw_object.hh
@@ -36,7 +36,7 @@
class RawObject: public ObjectFile
{
protected:
- RawObject(const std::string &_filename, int _fd, size_t _len,
+ RawObject(const std::string &_filename, size_t _len,
uint8_t *_data, Arch _arch, OpSys _opSys);
public:
virtual ~RawObject() {}
@@ -46,7 +46,7 @@ class RawObject: public ObjectFile
virtual bool loadLocalSymbols(SymbolTable *symtab, Addr addrMask =
std::numeric_limits<Addr>::max());
- static ObjectFile *tryFile(const std::string &fname, int fd, size_t len,
+ static ObjectFile *tryFile(const std::string &fname, size_t len,
uint8_t *data);
};