aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/ProfilingService.hpp
diff options
context:
space:
mode:
authorJim Flynn <jim.flynn@arm.com>2019-10-17 17:37:10 +0100
committerJim Flynn <jim.flynn@arm.com>2019-10-18 09:58:17 +0100
commit397043fa3d900430e9e0f6d328b76898f9613388 (patch)
treedc2cfbcff1a098881d05a97c3d96f4e902575953 /src/profiling/ProfilingService.hpp
parent9ea7700bde128f2601d5b7d8849e96c0a08e15c6 (diff)
downloadarmnn-397043fa3d900430e9e0f6d328b76898f9613388.tar.gz
IVGCVSW-4002 Add FamilyId to CommandHandlerKey
Change-Id: I0bb0bf77da2bcd7f4746078c4ccee9acc98638a7 Signed-off-by: Jim Flynn <jim.flynn@arm.com>
Diffstat (limited to 'src/profiling/ProfilingService.hpp')
-rw-r--r--src/profiling/ProfilingService.hpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/profiling/ProfilingService.hpp b/src/profiling/ProfilingService.hpp
index dda37dddf2..ea11442ba7 100644
--- a/src/profiling/ProfilingService.hpp
+++ b/src/profiling/ProfilingService.hpp
@@ -121,22 +121,26 @@ protected:
, m_BufferManager()
, m_SendCounterPacket(m_StateMachine, m_BufferManager)
, m_PeriodicCounterCapture(m_Holder, m_SendCounterPacket, *this)
- , m_ConnectionAcknowledgedCommandHandler(1,
+ , m_ConnectionAcknowledgedCommandHandler(0,
+ 1,
m_PacketVersionResolver.ResolvePacketVersion(1).GetEncodedValue(),
m_StateMachine)
- , m_RequestCounterDirectoryCommandHandler(3,
+ , m_RequestCounterDirectoryCommandHandler(0,
+ 3,
m_PacketVersionResolver.ResolvePacketVersion(3).GetEncodedValue(),
m_CounterDirectory,
m_SendCounterPacket,
m_StateMachine)
- , m_PeriodicCounterSelectionCommandHandler(4,
+ , m_PeriodicCounterSelectionCommandHandler(0,
+ 4,
m_PacketVersionResolver.ResolvePacketVersion(4).GetEncodedValue(),
m_Holder,
m_PeriodicCounterCapture,
*this,
m_SendCounterPacket,
m_StateMachine)
- , m_PerJobCounterSelectionCommandHandler(5,
+ , m_PerJobCounterSelectionCommandHandler(0,
+ 5,
m_PacketVersionResolver.ResolvePacketVersion(4).GetEncodedValue(),
m_StateMachine)
{