Skip to content

Commit

Permalink
StdMem: Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gvoskuilen committed Feb 22, 2022
1 parent baa0e5e commit f54472b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sst/core/interfaces/stdMem.h
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ class StandardMem : public SubComponent
std::string getString() override
{
std::ostringstream str;
str << "ID: " << id << ", Type: Read, Flags: [" << getFlagString() << "] PhysAddr: 0x" << std::hex << pAddr
str << "ID: " << id << ", Type: Read, Flags: [" << getFlagString() << "], PhysAddr: 0x" << std::hex << pAddr
<< ", VirtAddr: 0x" << vAddr;
str << ", Size: " << std::dec << size << ", InstPtr: 0x" << std::hex << iPtr << ", ThreadID: " << std::dec
<< tid;
Expand Down Expand Up @@ -797,7 +797,7 @@ class StandardMem : public SubComponent

virtual Request* makeResponse() override { return new WriteResp(id, pDst, size, flags, vDst, iPtr, tid); }

virtual bool needsResponse() override { return posted; }
virtual bool needsResponse() override { return !posted; }

SST::Event* convert(RequestConverter* converter) override { return converter->convert(this); }

Expand Down

0 comments on commit f54472b

Please sign in to comment.