We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b585c7f commit 80c0c05Copy full SHA for 80c0c05
src/CommandLineUtilities/ProgramDmaBench.cxx
@@ -564,7 +564,7 @@ class ProgramDmaBench : public Program
564
auto superpageAddress = mBufferBaseAddress + superpage.getOffset();
565
size_t readoutBytes = 0;
566
bool atStartOfSuperpage = true;
567
- while ((readoutBytes < superpage.getReceived()) && !isSigInt()) { // At least one more dma page fits in the superpage
+ while ((readoutBytes < superpage.getReceived())) { // At least one more dma page fits in the superpage
568
auto pageAddress = superpageAddress + readoutBytes;
569
auto readoutCount = fetchAddDmaPagesReadOut();
570
size_t pageSize = readoutPage(pageAddress, readoutCount, atStartOfSuperpage);
0 commit comments