diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2006-03-12 16:38:16 -0500 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2006-03-12 16:38:16 -0500 |
commit | 2d9c9dba37499d87ee599388aca5502279ce953a (patch) | |
tree | 263847b0bc4a20d0b138bcb51066c82f6f58f8bb /mem/port.cc | |
parent | 159cee171976019badb17336eff5b69df3c89528 (diff) | |
download | gem5-2d9c9dba37499d87ee599388aca5502279ce953a.tar.xz |
Get rid of "Functional" suffix from (read|write)(Blob|String) functions.
--HG--
extra : convert_revision : 1456308af0fd686dff53ec1baddd7747354e1c0a
Diffstat (limited to 'mem/port.cc')
-rw-r--r-- | mem/port.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mem/port.cc b/mem/port.cc index 75362b472..fb4f3b4e0 100644 --- a/mem/port.cc +++ b/mem/port.cc @@ -52,19 +52,19 @@ Port::blobHelper(Addr addr, uint8_t *p, int size, Command cmd) } void -Port::writeBlobFunctional(Addr addr, uint8_t *p, int size) +Port::writeBlob(Addr addr, uint8_t *p, int size) { blobHelper(addr, p, size, Write); } void -Port::readBlobFunctional(Addr addr, uint8_t *p, int size) +Port::readBlob(Addr addr, uint8_t *p, int size) { blobHelper(addr, p, size, Read); } void -Port::memsetBlobFunctional(Addr addr, uint8_t val, int size) +Port::memsetBlob(Addr addr, uint8_t val, int size) { // quick and dirty... uint8_t *buf = new uint8_t[size]; |