Skip to content

Commit 80c0c05

Browse files
committed
[bench-dma] page popping should not be stopped by sigint
1 parent b585c7f commit 80c0c05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CommandLineUtilities/ProgramDmaBench.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -564,7 +564,7 @@ class ProgramDmaBench : public Program
564564
auto superpageAddress = mBufferBaseAddress + superpage.getOffset();
565565
size_t readoutBytes = 0;
566566
bool atStartOfSuperpage = true;
567-
while ((readoutBytes < superpage.getReceived()) && !isSigInt()) { // At least one more dma page fits in the superpage
567+
while ((readoutBytes < superpage.getReceived())) { // At least one more dma page fits in the superpage
568568
auto pageAddress = superpageAddress + readoutBytes;
569569
auto readoutCount = fetchAddDmaPagesReadOut();
570570
size_t pageSize = readoutPage(pageAddress, readoutCount, atStartOfSuperpage);

0 commit comments

Comments
 (0)