Change task count type to uint64_t

Related-To: NEO-7105

Signed-off-by: Maciej Plewka <maciej.plewka@intel.com>
This commit is contained in:
Maciej Plewka 2022-11-29 09:35:05 +00:00 committed by Compute-Runtime-Automation
parent d7e4117dcf
commit c39cd23f87
2 changed files with 3 additions and 3 deletions

View File

@ -924,7 +924,7 @@ void CommandStreamReceiver::printTagAddressContent(TaskCountType taskCountToWait
auto postSyncAddress = getTagAddress();
if (start) {
PRINT_DEBUG_STRING(true, stdout,
"\nWaiting for task count %u at location %p with timeout %llx. Current value:",
"\nWaiting for task count %llu at location %p with timeout %llx. Current value:",
taskCountToWait, postSyncAddress, waitTimeout);
} else {
PRINT_DEBUG_STRING(true, stdout,

View File

@ -8,5 +8,5 @@
#pragma once
#include <stdint.h>
using TaskCountType = uint32_t;
using TagAddressType = uint32_t;
using TaskCountType = uint64_t;
using TagAddressType = uint64_t;