Skip to content

Commit f702dc8

Browse files
committed
7.1.3
1 parent 7d9c581 commit f702dc8

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

doxygen/gen/metrics.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@code{.c}
22
================================================
3-
NLOC CCN token PARAM length location
3+
NLOC CCN token PARAM length location
44
------------------------------------------------
55
3 1 16 1 3 QHsm_state@409-411@..\include\qep.h
66
3 1 15 1 3 QEQueue_getNFree@306-308@..\include\qequeue.h
@@ -86,7 +86,7 @@
8686
14 3 75 1 16 QTimeEvt_noActive@411-426@..\src\qf\qf_time.c
8787
21 2 112 1 31 QK_schedLock@74-104@..\src\qk\qk.c
8888
20 4 118 1 33 QK_schedUnlock@107-139@..\src\qk\qk.c
89-
11 3 103 1 23 QF_init@144-166@..\src\qk\qk.c
89+
11 3 101 1 23 QF_init@144-166@..\src\qk\qk.c
9090
3 1 10 1 4 QF_stop@169-172@..\src\qk\qk.c
9191
15 4 61 1 25 QF_run@175-199@..\src\qk\qk.c
9292
25 3 156 7 34 QActive_start_@206-239@..\src\qk\qk.c
@@ -98,7 +98,7 @@
9898
18 1 124 7 25 QActive_start_@177-201@..\src\qv\qv.c
9999
23 3 131 1 34 QXK_schedLock@71-104@..\src\qxk\qxk.c
100100
20 4 118 1 33 QXK_schedUnlock@107-139@..\src\qxk\qxk.c
101-
11 3 103 1 23 QF_init@144-166@..\src\qxk\qxk.c
101+
11 3 101 1 23 QF_init@144-166@..\src\qxk\qxk.c
102102
3 1 10 1 4 QF_stop@169-172@..\src\qxk\qxk.c
103103
18 4 92 1 30 QF_run@175-204@..\src\qxk\qxk.c
104104
29 5 178 7 42 QActive_start_@211-252@..\src\qxk\qxk.c
@@ -159,9 +159,9 @@ NLOC Avg.NLOC AvgCCN Avg.token function_cnt file
159159
152 36.2 4.8 200.8 4 ..\src\qf\qf_qeq.c
160160
18 16.0 2.0 79.0 1 ..\src\qf\qf_qmact.c
161161
218 26.2 4.1 155.6 8 ..\src\qf\qf_time.c
162-
187 22.4 4.8 127.8 8 ..\src\qk\qk.c
162+
187 22.4 4.8 127.5 8 ..\src\qk\qk.c
163163
74 16.8 3.8 95.8 4 ..\src\qv\qv.c
164-
261 23.0 5.0 140.3 11 ..\src\qxk\qxk.c
164+
261 23.0 5.0 140.1 11 ..\src\qxk\qxk.c
165165
235 57.0 8.5 490.0 4 ..\src\qxk\qxk_mutex.c
166166
143 34.0 4.5 213.5 4 ..\src\qxk\qxk_sema.c
167167
325 24.4 3.8 156.0 13 ..\src\qxk\qxk_xthr.c

ports/lint-plus/options.lnt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ qpc.lnt // QP/C options
116116

117117
// M3-R11.8(R) cast drops const qualifier
118118
-efunc(9005,
119-
QF_gc)
119+
QF_gc,
120+
QF_init)
120121

121122
// M3-D11.5(A) conversion from pointer to void to other pointer type
122123
-efunc(9079,

qpc.qm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10373,7 +10373,7 @@ QK_attr_.lockCeil = (QF_MAX_ACTIVE + 1U); /* scheduler locked */
1037310373
static QActive const idle_ao = { (struct QHsmVtable const *)0 };
1037410374

1037510375
/* register the idle AO object (cast 'const' away) */
10376-
QActive_registry_[0] = QF_CONST_CAST_(QActive*, &idle_ao);
10376+
QActive_registry_[0] = (QActive *)&idle_ao;
1037710377

1037810378
#ifdef QK_INIT
1037910379
QK_INIT(); /* port-specific initialization of the QK kernel */
@@ -10898,7 +10898,7 @@ QXK_attr_.lockCeil = (QF_MAX_ACTIVE + 1U); /* scheduler locked */
1089810898
static QActive const idle_ao = { (struct QHsmVtable const *)0 };
1089910899

1090010900
/* register the idle AO object (cast 'const' away) */
10901-
QActive_registry_[0] = QF_CONST_CAST_(QActive*, &idle_ao);
10901+
QActive_registry_[0] = (QActive *)&idle_ao;
1090210902

1090310903
#ifdef QXK_INIT
1090410904
QXK_INIT(); /* port-specific initialization of the QXK kernel */

src/qk/qk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ void QF_init(void) {
158158
static QActive const idle_ao = { (struct QHsmVtable const *)0 };
159159

160160
/* register the idle AO object (cast 'const' away) */
161-
QActive_registry_[0] = QF_CONST_CAST_(QActive*, &idle_ao);
161+
QActive_registry_[0] = (QActive *)&idle_ao;
162162

163163
#ifdef QK_INIT
164164
QK_INIT(); /* port-specific initialization of the QK kernel */

src/qxk/qxk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ void QF_init(void) {
158158
static QActive const idle_ao = { (struct QHsmVtable const *)0 };
159159

160160
/* register the idle AO object (cast 'const' away) */
161-
QActive_registry_[0] = QF_CONST_CAST_(QActive*, &idle_ao);
161+
QActive_registry_[0] = (QActive *)&idle_ao;
162162

163163
#ifdef QXK_INIT
164164
QXK_INIT(); /* port-specific initialization of the QXK kernel */

0 commit comments

Comments
 (0)