From 4882dbe10cce59e1b64bc3d43e6b29eaf3afc446 Mon Sep 17 00:00:00 2001 From: Lior Dekel Date: Wed, 9 Feb 2022 17:18:27 +0200 Subject: ThreadX demo app bug fix Change-Id: I3f2f6732f8850e76971fad55035d829286d90a99 --- applications/threadx_demo/main.cpp | 14 +++----------- 1 file 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 &_output, const vector &_expectedOutput, const size_t _numBytesToPrint, - const vector &_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) {} }; -- cgit v1.2.1