aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/ActivateTimelineReportingCommandHandler.hpp
diff options
context:
space:
mode:
authorJim Flynn <jim.flynn@arm.com>2022-03-16 00:27:43 +0000
committerJim Flynn <jim.flynn@arm.com>2022-03-16 14:42:34 +0000
commit9c85b41a9fcb3c64d7a686373e7dde75630ccd49 (patch)
tree49ec983ec1ba499d5a5a9240b69f8f4bb9ca2082 /src/profiling/ActivateTimelineReportingCommandHandler.hpp
parent06ccd713391cca68dc8ab53b84bf058723ae55ab (diff)
downloadarmnn-9c85b41a9fcb3c64d7a686373e7dde75630ccd49.tar.gz
IVGCVSW-6852 Break the remaining dependencies on Arm NN in the profiling code
Change-Id: I18b8ca22896567904768170350ee5eb22edd4a22 Signed-off-by: Jim Flynn <jim.flynn@arm.com>
Diffstat (limited to 'src/profiling/ActivateTimelineReportingCommandHandler.hpp')
-rw-r--r--src/profiling/ActivateTimelineReportingCommandHandler.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/profiling/ActivateTimelineReportingCommandHandler.hpp b/src/profiling/ActivateTimelineReportingCommandHandler.hpp
index 6b311fe851..21e1fe6186 100644
--- a/src/profiling/ActivateTimelineReportingCommandHandler.hpp
+++ b/src/profiling/ActivateTimelineReportingCommandHandler.hpp
@@ -30,12 +30,14 @@ public:
ProfilingStateMachine& profilingStateMachine,
arm::pipe::Optional<IReportStructure&> reportStructure,
std::atomic<bool>& timelineReporting,
- INotifyBackends& notifyBackends)
+ INotifyBackends& notifyBackends,
+ IProfilingService& profilingService)
: CommandHandlerFunctor(familyId, packetId, version),
m_SendTimelinePacket(sendTimelinePacket),
m_StateMachine(profilingStateMachine),
m_TimelineReporting(timelineReporting),
m_BackendNotifier(notifyBackends),
+ m_ProfilingService(profilingService),
m_ReportStructure(reportStructure)
{}
@@ -46,6 +48,7 @@ private:
ProfilingStateMachine& m_StateMachine;
std::atomic<bool>& m_TimelineReporting;
INotifyBackends& m_BackendNotifier;
+ IProfilingService& m_ProfilingService;
arm::pipe::Optional<IReportStructure&> m_ReportStructure;
};