summaryrefslogtreecommitdiffstats
path: root/task_manager/server/src/tskm_debug.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'task_manager/server/src/tskm_debug.cpp')
-rw-r--r--task_manager/server/src/tskm_debug.cpp73
1 files changed, 1 insertions, 72 deletions
diff --git a/task_manager/server/src/tskm_debug.cpp b/task_manager/server/src/tskm_debug.cpp
index 225c4b5c..5881f9af 100644
--- a/task_manager/server/src/tskm_debug.cpp
+++ b/task_manager/server/src/tskm_debug.cpp
@@ -1,5 +1,5 @@
/*
- * @copyright Copyright (c) 2016-2019 TOYOTA MOTOR CORPORATION.
+ * @copyright Copyright (c) 2016-2020 TOYOTA MOTOR CORPORATION.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -40,77 +40,6 @@ tskm_convState2Str(TSKM_STATE_t state) {
}
const char*
-tskm_convLocalStep2Str(TSKM_LOCAL_STEP_t localStep) {
- switch (localStep) { // LCOV_EXCL_BR_LINE 7:debug code
- case TSKM_LSTEP_LAST:
- return "LAST";
- case TSKM_LSTEP_SHM:
- // LCOV_EXCL_START 7:debug code
- AGL_ASSERT_NOT_TESTED(); // LCOV_EXCL_LINE 200: test assert
- return "SHM";
- case TSKM_LSTEP_BUPCHK:
- // LCOV_EXCL_START 7:debug code
- AGL_ASSERT_NOT_TESTED(); // LCOV_EXCL_LINE 200: test assert
- return "BUPCHK";
- case TSKM_LSTEP_ALL:
- return "ALL";
- case 0:
- return "0";
- case 1:
- // LCOV_EXCL_START 7:debug code
- AGL_ASSERT_NOT_TESTED(); // LCOV_EXCL_LINE 200: test assert
- return "1";
- // LCOV_EXCL_STOP
- case 2:
- // LCOV_EXCL_START 7:debug code
- AGL_ASSERT_NOT_TESTED(); // LCOV_EXCL_LINE 200: test assert
- return "2";
- // LCOV_EXCL_STOP
- case 3:
- // LCOV_EXCL_START 7:debug code
- AGL_ASSERT_NOT_TESTED(); // LCOV_EXCL_LINE 200: test assert
- return "3";
- // LCOV_EXCL_STOP
- case 4:
- // LCOV_EXCL_START 7:debug code
- AGL_ASSERT_NOT_TESTED(); // LCOV_EXCL_LINE 200: test assert
- return "4";
- // LCOV_EXCL_STOP
- case 5:
- // LCOV_EXCL_START 7:debug code
- AGL_ASSERT_NOT_TESTED(); // LCOV_EXCL_LINE 200: test assert
- return "5";
- // LCOV_EXCL_STOP
- case 6:
- // LCOV_EXCL_START 7:debug code
- AGL_ASSERT_NOT_TESTED(); // LCOV_EXCL_LINE 200: test assert
- return "6";
- // LCOV_EXCL_STOP
- case 7:
- // LCOV_EXCL_START 7:debug code
- AGL_ASSERT_NOT_TESTED(); // LCOV_EXCL_LINE 200: test assert
- return "7";
- // LCOV_EXCL_STOP
- case 8:
- // LCOV_EXCL_START 7:debug code
- AGL_ASSERT_NOT_TESTED(); // LCOV_EXCL_LINE 200: test assert
- return "8";
- // LCOV_EXCL_STOP
- case 9:
- // LCOV_EXCL_START 7:debug code
- AGL_ASSERT_NOT_TESTED(); // LCOV_EXCL_LINE 200: test assert
- return "9";
- // LCOV_EXCL_STOP
- default:
- break;
- }
- // LCOV_EXCL_START 7:debug code
- AGL_ASSERT_NOT_TESTED(); // LCOV_EXCL_LINE 200: test assert
- return "UNKNONW";
- // LCOV_EXCL_STOP
-}
-
-const char*
tskm_convEvent2Str(TSKM_EVENT_t event) {
switch (event) { // LCOV_EXCL_BR_LINE 7:debug code
case TSKM_EV_NOP: