ruby: made Locked read/write atomic requests within ruby

This commit is contained in:
Derek Hower 2009-09-09 12:39:10 -05:00
parent edd522b30a
commit 3bb2fcfc84

View file

@ -461,14 +461,8 @@ void Sequencer::issueRequest(const RubyRequest& request) {
ctype = CacheRequestType_ST;
break;
case RubyRequestType_Locked_Read:
ctype = CacheRequestType_ST;
break;
case RubyRequestType_Locked_Write:
ctype = CacheRequestType_ST;
break;
case RubyRequestType_RMW_Read:
ctype = CacheRequestType_ATOMIC;
break;
case RubyRequestType_RMW_Write:
ctype = CacheRequestType_ATOMIC;
break;