Correct infinite timeout argument for event synchronization

Related-To: NEO-6242

Signed-off-by: Zbigniew Zdanowicz <zbigniew.zdanowicz@intel.com>
This commit is contained in:
Zbigniew Zdanowicz
2022-03-17 18:44:34 +00:00
committed by Compute-Runtime-Automation
parent a968cb223e
commit 1540d06c25
4 changed files with 105 additions and 23 deletions

View File

@@ -71,6 +71,7 @@ class TimestampPackets : public TagTypeBase {
uint64_t getGlobalEndValue(uint32_t packetIndex) const { return static_cast<uint64_t>(packets[packetIndex].globalEnd); }
void const *getContextEndAddress(uint32_t packetIndex) const { return static_cast<void const *>(&packets[packetIndex].contextEnd); }
void const *getContextStartAddress(uint32_t packetIndex) const { return static_cast<void const *>(&packets[packetIndex].contextStart); }
protected:
Packet packets[TimestampPacketSizeControl::preferredPacketCount];