From 6c7fdb1be7fa0389c4d132d8c8520fc2346567b3 Mon Sep 17 00:00:00 2001 From: Ron Dreslinski Date: Tue, 31 Jan 2006 14:42:42 -0500 Subject: [PATCH] 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 --- cpu/simple/cpu.hh | 3 +++ mem/port.hh | 8 -------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/cpu/simple/cpu.hh b/cpu/simple/cpu.hh index 30fea0f86..0fb6235b4 100644 --- a/cpu/simple/cpu.hh +++ b/cpu/simple/cpu.hh @@ -36,6 +36,9 @@ #include "cpu/pc_event.hh" #include "cpu/sampler/sampler.hh" #include "cpu/static_inst.hh" +#include "mem/packet.hh" +#include "mem/port.hh" +#include "mem/request.hh" #include "sim/eventq.hh" // forward declarations 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