Mem: Allow ASID to be set after request is created.

This commit is contained in:
Daniel Johnson 2011-09-13 12:06:13 -05:00
parent 7c479d7349
commit 52d30813ca

View file

@ -377,6 +377,13 @@ class Request : public FastAlloc
return _asid;
}
/** Accessor function for asid.*/
void
setAsid(int asid)
{
_asid = asid;
}
/** Accessor function for asi.*/
uint8_t
getAsi()