aboutsummaryrefslogtreecommitdiff
path: root/tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.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 /tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.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 'tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.hpp')
-rw-r--r--tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.hpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.hpp b/tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.hpp
index e1172e2d68..faf9792ac0 100644
--- a/tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.hpp
+++ b/tests/profiling/gatordmock/PeriodicCounterSelectionResponseHandler.hpp
@@ -26,8 +26,11 @@ public:
* @param version The version of that id.
* @param quietOperation Optional parameter to turn off printouts. This is useful for unittests.
*/
- PeriodicCounterSelectionResponseHandler(uint32_t packetId, uint32_t version, bool quietOperation = true)
- : CommandHandlerFunctor(packetId, version)
+ PeriodicCounterSelectionResponseHandler(uint32_t familyId,
+ uint32_t packetId,
+ uint32_t version,
+ bool quietOperation = true)
+ : CommandHandlerFunctor(familyId, packetId, version)
, m_QuietOperation(quietOperation)
{}