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:
parent
d7e4117dcf
commit
c39cd23f87
|
@ -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,
|
||||
|
|
|
@ -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;
|
Loading…
Reference in New Issue