ruby: protocols: remove unused action z_stall
This commit is contained in:
parent
385e542c5a
commit
13ad07601b
4 changed files with 0 additions and 17 deletions
|
@ -148,10 +148,6 @@ machine(DMA, "DMA Controller")
|
|||
dmaResponseQueue_in.dequeue();
|
||||
}
|
||||
|
||||
action(z_stall, "z", desc="dma is busy..stall") {
|
||||
// do nothing
|
||||
}
|
||||
|
||||
transition(READY, ReadRequest, BUSY_RD) {
|
||||
s_sendReadRequest;
|
||||
p_popRequestQueue;
|
||||
|
|
|
@ -1492,9 +1492,6 @@ machine(L2Cache, "Token protocol")
|
|||
localDirectory.deallocate(address);
|
||||
}
|
||||
|
||||
action(z_stall, "z", desc="Stall") {
|
||||
}
|
||||
|
||||
action(zz_recycleL1RequestQueue, "zz", desc="Send the head of the mandatory queue to the back of the queue.") {
|
||||
peek(L1requestNetwork_in, RequestMsg) {
|
||||
APPEND_TRANSITION_COMMENT(in_msg.Requestor);
|
||||
|
|
|
@ -555,11 +555,6 @@ machine(Directory, "Directory protocol")
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
// action(z_stall, "z", desc="Cannot be handled right now.") {
|
||||
// Special name recognized as do nothing case
|
||||
// }
|
||||
|
||||
action(zz_recycleRequest, "\z", desc="Recycle the request queue") {
|
||||
requestQueue_in.recycle();
|
||||
}
|
||||
|
|
|
@ -245,11 +245,6 @@ machine(DMA, "DMA Controller")
|
|||
unset_tbe();
|
||||
}
|
||||
|
||||
action(z_stall, "z", desc="dma is busy..stall") {
|
||||
// do nothing
|
||||
}
|
||||
|
||||
|
||||
|
||||
transition(READY, ReadRequest, BUSY_RD) {
|
||||
s_sendReadRequest;
|
||||
|
|
Loading…
Reference in a new issue