ruby: protocols: remove unused action z_stall

This commit is contained in:
Nilay Vaish 2014-02-23 19:16:15 -06:00
parent 385e542c5a
commit 13ad07601b
4 changed files with 0 additions and 17 deletions

View file

@ -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;

View file

@ -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);

View file

@ -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();
}

View file

@ -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;