aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLior Dekel <Lior.dekel@arm.com>2022-02-09 17:18:27 +0200
committerKristofer Jonsson <kristofer.jonsson@arm.com>2022-02-10 08:00:37 +0000
commit4882dbe10cce59e1b64bc3d43e6b29eaf3afc446 (patch)
tree943265c88292eb0ba5ec9e62fc7bb3455cb0826e
parent3eaabb4afc684160e3bb8e5034de77353fdc585b (diff)
downloadethos-u-core-platform-22.02-rc1.tar.gz
ThreadX demo app bug fix22.02-rc1
Change-Id: I3f2f6732f8850e76971fad55035d829286d90a99
-rw-r--r--applications/threadx_demo/main.cpp14
1 files changed, 3 insertions, 11 deletions
diff --git a/applications/threadx_demo/main.cpp b/applications/threadx_demo/main.cpp
index f813ee4..e2e41b3 100644
--- a/applications/threadx_demo/main.cpp
+++ b/applications/threadx_demo/main.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2021 Arm Limited. All rights reserved.
+ * Copyright (c) 2019-2022 Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: Apache-2.0
*
@@ -95,17 +95,9 @@ struct xInferenceJob : public InferenceJob {
const vector<DataPtr> &_output,
const vector<DataPtr> &_expectedOutput,
const size_t _numBytesToPrint,
- const vector<uint8_t> &_pmuEventConfig,
- const uint32_t _pmuCycleCounterEnable,
+ void *_userArg,
TX_QUEUE *_queue) :
- InferenceJob(_name,
- _networkModel,
- _input,
- _output,
- _expectedOutput,
- _numBytesToPrint,
- _pmuEventConfig,
- _pmuCycleCounterEnable),
+ InferenceJob(_name, _networkModel, _input, _output, _expectedOutput, _numBytesToPrint, _userArg),
responseQueue(_queue), status(false) {}
};