diff options
author | Ron Dreslinski <rdreslin@umich.edu> | 2006-02-21 20:04:23 -0500 |
---|---|---|
committer | Ron Dreslinski <rdreslin@umich.edu> | 2006-02-21 20:04:23 -0500 |
commit | 1fff9f504f0655a5fe87d2fc1962fbb15d8a1a8f (patch) | |
tree | 5871b3c123b739184638e88c2053d228cb8c90ed /mem/port.hh | |
parent | 4bd11c10a5b9b5b8ef5cdf75cb9496da6a55c292 (diff) | |
download | gem5-1fff9f504f0655a5fe87d2fc1962fbb15d8a1a8f.tar.xz |
Some more changes for compilation. Since memset is now part of port and not virtual, no need for memory to define them.
mem/physical.cc:
Return 0 for block size. The chunk generator should treat this as a infinite size.
mem/physical.hh:
Add function prototype
mem/port.hh:
Fix function to take no arguments
mem/translating_port.cc:
mem/translating_port.hh:
Remove the memsetBlob because it doesn't exist yet.
--HG--
extra : convert_revision : dfe352acfc2912ecc9a1ba1863e5666f46b991cc
Diffstat (limited to 'mem/port.hh')
-rw-r--r-- | mem/port.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mem/port.hh b/mem/port.hh index 88cca885b..9d0bd7968 100644 --- a/mem/port.hh +++ b/mem/port.hh @@ -96,7 +96,7 @@ class Port /** Function to set the pointer for the peer port. @todo should be called by the configuration stuff (python). */ - Port *getPeer(Port *port) { return peer; } + Port *getPeer() { return peer; } protected: |