projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7a6bf67
)
Locked requests should actually be converted to ST rather than ATOMIC, because ATOMIC...
author
Polina Dudnik
<pdudnik@gmail.com>
Mon, 13 Jul 2009 17:11:17 +0000
(12:11 -0500)
committer
Polina Dudnik
<pdudnik@gmail.com>
Mon, 13 Jul 2009 17:11:17 +0000
(12:11 -0500)
src/mem/ruby/system/Sequencer.cc
patch
|
blob
|
history
diff --git
a/src/mem/ruby/system/Sequencer.cc
b/src/mem/ruby/system/Sequencer.cc
index c3a8e9424e05e13684668058386df2ffe704a29a..eb694fa131daf0f8ef74fc915e687fcf9b3d6b39 100644
(file)
--- a/
src/mem/ruby/system/Sequencer.cc
+++ b/
src/mem/ruby/system/Sequencer.cc
@@
-397,10
+397,10
@@
void Sequencer::issueRequest(const RubyRequest& request) {
ctype = CacheRequestType_ST;
break;
case RubyRequestType_Locked_Read:
- ctype = CacheRequestType_
ATOMIC
;
+ ctype = CacheRequestType_
ST
;
break;
case RubyRequestType_Locked_Write:
- ctype = CacheRequestType_
ATOMIC
;
+ ctype = CacheRequestType_
ST
;
break;
default:
assert(0);