diff options
author | Ron Dreslinski <rdreslin@umich.edu> | 2006-01-31 14:42:42 -0500 |
---|---|---|
committer | Ron Dreslinski <rdreslin@umich.edu> | 2006-01-31 14:42:42 -0500 |
commit | 6c7fdb1be7fa0389c4d132d8c8520fc2346567b3 (patch) | |
tree | aeb1f582031627e9fc31475e3f7fe54b5d550673 /mem | |
parent | 2f644efafaa6df54f4e9b8f2710aa6f3647b6940 (diff) | |
download | gem5-6c7fdb1be7fa0389c4d132d8c8520fc2346567b3.tar.xz |
More include files, removing definition of SendResult whioch isn't needed anymore
cpu/simple/cpu.hh:
Some needed includes
mem/port.hh:
Now we removed the sendResult and replaced with void,tick,bool don't need it defined anymore
--HG--
extra : convert_revision : aea08ec299c41b9f9a5b0da7649cef0459315139
Diffstat (limited to 'mem')
-rw-r--r-- | mem/port.hh | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/mem/port.hh b/mem/port.hh index 1cbb18f00..81150b2a3 100644 --- a/mem/port.hh +++ b/mem/port.hh @@ -46,14 +46,6 @@ #include "mem/packet.hh" #include "mem/request.hh" -/** The immediate result of a Send call. Can be used to determine if a fast path - access can occur, or if a retry may come. */ -enum SendResult -{ - Success, - Failure -}; - /** * Ports are used to interface memory objects to * each other. They will always come in pairs, and we refer to the other |