aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/ISendTimelinePacket.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/profiling/ISendTimelinePacket.hpp')
-rw-r--r--src/profiling/ISendTimelinePacket.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/profiling/ISendTimelinePacket.hpp b/src/profiling/ISendTimelinePacket.hpp
index 34157b819a..a95413455a 100644
--- a/src/profiling/ISendTimelinePacket.hpp
+++ b/src/profiling/ISendTimelinePacket.hpp
@@ -10,6 +10,7 @@
#include <algorithm>
#include <string>
#include <vector>
+#include <thread>
namespace armnn
{
@@ -29,7 +30,9 @@ public:
virtual void SendTimelineEntityBinaryPacket(uint64_t profilingGuid) = 0;
/// Create and write a TimelineEventBinaryPacket from the parameters to the buffer.
- virtual void SendTimelineEventBinaryPacket(uint64_t timestamp, uint32_t threadId, uint64_t profilingGuid) = 0;
+ virtual void SendTimelineEventBinaryPacket(uint64_t timestamp,
+ std::thread::id threadId,
+ uint64_t profilingGuid) = 0;
/// Create and write a TimelineEventClassBinaryPacket from the parameters to the buffer.
virtual void SendTimelineEventClassBinaryPacket(uint64_t profilingGuid) = 0;