315c315
< * modifying the command or destination fields, so this function
---
> * modifying the destination fields, so this function
327a328,339
> /** Take a request packet and modify it in place to be suitable
> * for returning as a response to that request.
> */
> void makeAtomicResponse() {
> assert(needsResponse());
> assert(isRequest());
> int icmd = (int)cmd;
> icmd &= ~(IsRequest);
> icmd |= IsResponse;
> cmd = (Command)icmd;
> }
>