diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2006-01-31 14:20:48 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2006-01-31 14:20:48 -0500 |
commit | fccd113e2f628e829e83dfab9288b8967a9bd539 (patch) | |
tree | b449cbf174a771b064ca2067529b6cff89b8b4a5 /mem/bus.hh | |
parent | 95088d141fb3006a39c342af9501f0203772cf79 (diff) | |
parent | 4875b3346709d72e0be99fb6ccede65550b91f94 (diff) | |
download | gem5-fccd113e2f628e829e83dfab9288b8967a9bd539.tar.xz |
Merge zizzer:/bk/newmem
into zeep.eecs.umich.edu:/z/saidi/work/m5.newmem
--HG--
extra : convert_revision : 3eb1a665cb813df974aa2815a794b459473c0a77
Diffstat (limited to 'mem/bus.hh')
-rw-r--r-- | mem/bus.hh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mem/bus.hh b/mem/bus.hh index 57d819304..0fd450c4f 100644 --- a/mem/bus.hh +++ b/mem/bus.hh @@ -47,15 +47,15 @@ class Bus : public MemObject { /** Function called by the port when the bus is recieving a Timing transaction.*/ - SendResult recvTiming(Packet &pkt, int id); + bool recvTiming(Packet &pkt, int id); /** Function called by the port when the bus is recieving a Atomic transaction.*/ - SendResult recvAtomic(Packet &pkt, int id); + Tick recvAtomic(Packet &pkt, int id); /** Function called by the port when the bus is recieving a Functional transaction.*/ - SendResult recvFunctional(Packet &pkt, int id); + void recvFunctional(Packet &pkt, int id); /** Function called by the port when the bus is recieving a status change.*/ void recvStatusChange(Port::Status status, int id); @@ -81,17 +81,17 @@ class Bus : public MemObject /** When reciving a timing request from the peer port (at id), pass it to the bus. */ - virtual SendResult recvTiming(Packet &pkt) + virtual bool recvTiming(Packet &pkt) { return bus->recvTiming(pkt, id); } /** When reciving a Atomic requestfrom the peer port (at id), pass it to the bus. */ - virtual SendResult recvAtomic(Packet &pkt) + virtual Tick recvAtomic(Packet &pkt) { return bus->recvAtomic(pkt, id); } /** When reciving a Functional requestfrom the peer port (at id), pass it to the bus. */ - virtual SendResult recvFunctional(Packet &pkt) + virtual void recvFunctional(Packet &pkt) { return bus->recvFunctional(pkt, id); } /** When reciving a status changefrom the peer port (at id), |