kfdtest: Pass timeout parameter to BaseQueue::Wait4PacketConsumption

Change-Id: I0e88db5ca8e6712e9efc419a10eb4c49cedb6f62
Signed-off-by: Felix Kuehling <Felix.Kuehling@amd.com>


[ROCm/ROCR-Runtime commit: 6f5379d315]
This commit is contained in:
Felix Kuehling
2019-05-29 00:28:51 -04:00
parent f013b274aa
commit ceba63cbe2
2 changed files with 2 additions and 2 deletions
@@ -88,6 +88,6 @@ void SDMAQueue::Wait4PacketConsumption(HsaEvent *event, unsigned int timeOut) {
EXPECT_SUCCESS(hsaKmtWaitOnEvent(event, timeOut));
} else {
BaseQueue::Wait4PacketConsumption();
BaseQueue::Wait4PacketConsumption(NULL, timeOut);
}
}