kfdtest: Pass timeout parameter to BaseQueue::Wait4PacketConsumption

Change-Id: I0e88db5ca8e6712e9efc419a10eb4c49cedb6f62
Signed-off-by: Felix Kuehling <Felix.Kuehling@amd.com>
This commit is contained in:
Felix Kuehling
2019-05-29 00:28:51 -04:00
parent f5a094bc96
commit 6f5379d315
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -80,6 +80,6 @@ void PM4Queue::Wait4PacketConsumption(HsaEvent *event, unsigned int timeOut) {
EXPECT_SUCCESS(hsaKmtWaitOnEvent(event, timeOut));
} else {
BaseQueue::Wait4PacketConsumption();
BaseQueue::Wait4PacketConsumption(NULL, timeOut);
}
}