projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
356a4f9
)
Changes needed for a bus from CPU->L1
author
Ron Dreslinski
<rdreslin@umich.edu>
Tue, 14 Nov 2006 00:12:45 +0000
(19:12 -0500)
committer
Ron Dreslinski
<rdreslin@umich.edu>
Tue, 14 Nov 2006 00:12:45 +0000
(19:12 -0500)
src/cpu/simple/atomic.cc:
Make the atomic cpu return 0 on snoops.
--HG--
extra : convert_revision :
aad96ad36e0c764c7cfef8b0c8e97877574f5845
src/cpu/simple/atomic.cc
patch
|
blob
|
history
diff --git
a/src/cpu/simple/atomic.cc
b/src/cpu/simple/atomic.cc
index 9a1f831cd08901bd0ff57b5b6f0367ca02aa7466..3252606092b5b5aa26cd9c92dbb5b459b605c20e 100644
(file)
--- a/
src/cpu/simple/atomic.cc
+++ b/
src/cpu/simple/atomic.cc
@@
-94,7
+94,7
@@
Tick
AtomicSimpleCPU::CpuPort::recvAtomic(PacketPtr pkt)
{
//Snooping a coherence request, just return
- return
curTick
;
+ return
0
;
}
void