1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
35
36
37
38
39
40
41
42
43
47
48
49
51
52
58
59
60
64
65
66
67
68
69
70
71
72
76
77
78
79
80
81
82
83
86
87
88
89
90
91
92
95
101
105
106
107
108
109
111
112
113
114
115
116
117
120
121
123
130
131
132
133
134
135
136
137
138
139
143
144
146
147
148
149
150
151
152
155
156
157
158
159
160
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
184
191
192
193
194
195
196
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
218
223
224
225
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
277
278
279
280
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
313
314
315
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
333
334
335
337
338
339
343
344
345
346
347
348
349
350
351
355
356
357
358
361
362
363
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
398
399
400
401
402
403
404
405
406
409
410
411
412
415
416
417
418
421
422
423
424
425
430
431
434
435
436
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
462
463
466
467
468
473
474
475
479
480
481
482
483
484
485
486
487
488
489
490
493
494
495
499
500
503
504
505
510
511
514
515
516
517
518
519
520
521
522
523
524
525
526
529
530
531
535
536
537
538
545
546
547
551
552
553
554
555
556
557
558
559
560
564
565
566
571
572
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
604
605
606
607
608
609
611
612
613
614
615
620
621
622
623
624
625
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
651
652
653
654
655
656
657
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
696
697
698
699
700
701
702
703
704
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
746
747
768
769
770
771
772
773
774
775
776
777
778
779
780
785
791
792
796
797
798
799
800
801
802
807
808
809
810
811
812
813
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
848
849
850
851
852
856
857
858
862
863
864
865
866
867
868
869
870
871
876
877
878
879
880
881
882
883
884
885
887
888
889
890
891
892
893
894
895
896
897
898
901
905
909
910
911
913
914
915
921
922
924
928
932
933
934
935
939
940
941
942
943
944
946
947
948
949
950
951
952
953
956
957
958
959
962
963
964
965
968
969
970
971
974
975
979
980
981
982
988
989
990
991
995
996
997
998
1004
1005
1006
1007
1010
1011
1012
1016
1017
1018
1021
1022
1023
1024
1027
1028
1031
1032
1033
1034
1037
1038
1039
1040
1041
1044
1045
1046
1047
1050
1051
1054
1055
1056
1057
1060
1061
1062
1063
1064
1070
1074
1075
1076
1077
1078
1079
1081
1082
1083
1084
1085
1086
1088
1089
1090
1097
1101
1102
1123
1124
1125
1126
1127
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1153
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1170
1171
1172
1173
1177
1181
1182
1183
1187
1191
1192
1196
1197
1198
1199
1200
1205
1206
1207
1210
1211
1212
1214
1215
1216
1221
1222
1223
1224
1225
1226
1227
1228
1229
1231
1232
1233
1234
1235
1236
1238
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1270
1271
1272
1273
1274
1275
1291
1305
1306
1307
1308
1309
1310
1311
1312
1313
1315
1316
1317
1321
1322
1323
1324
1326
1330
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1368
1369
1371
1375
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1399
1400
1401
1402
1407
1408
1409
1415
1416
1417
1418
1419
1422
1423
1424
1425
1439
1440
1443
1444
1445
1449
1450
1451
1452
1453
1461
1462
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1553
1557
1558
1559
1560
1562
1563
1564
1565
1566
1567
1570
1571
1574
1575
1576
1577
1578
1580
1603
1610
1616
1617
1620
1621
1622
1623
1624
1626
1630
1634
1635
1636
1637
1638
1639
1642
1643
1644
1646
1650
1654
1655
1659
1660
1661
1664
1671
1675
1676
1677
1681
1682
1686
1690
1691
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1712
1713
1714
1715
1716
1718
1722
1726
1727
1728
1732
1736
1737
1738
1739
1740
1748
1749
1750
1751
1752
1753
1754
1756
1757
1760
1761
1762
1766
1767
1768
1769
1775
1776
1777
1780
1781
1788
1792
1793
1794
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1824
1825
1828
1832
1833
1837
1838
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1860
1861
1862
1863
1864
1865
1866
1867
1868
1870
1871
1872
1873
1874
1881
1885
1886
1890
1891
1892
1893
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1942
1946
1950
1951
1952
1953
1954
1961
1962
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
2001
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2029
2030
2031
2032
2033
2036
2037
2040
2041
2042
2047
2048
2049
2050
2057
2058
2059
2060
2061
2062
2063
2069
2070
2071
2072
2073
2075
2080
2084
2085
2092
2093
2095
2096
2097
2098
2099
2100
2101
2104
2105
2106
2107
2108
2109
2110
2111
2112
2116
2117
2119
2120
2121
2123
2124
2125
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2142
2143
2149
2150
2163
2164
2165
2169
2176
2183
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2201
2202
2203
2208
2209
2210
2211
2212
2213
2214
2215
2216
2218
2219
2220
2221
2222
2223
2224
2225
2227
2231
2235
2236
2237
2247
2248
2252
2253
2254
2255
2256
2257
2258
2269
2270
2271
2272
2276
2277
2278
2279
2280
2281
2284
2285
2286
2287
2291
2292
2293
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2344
2345
2346
2347
2348
2349
2350
2356
2357
2358
2359
2360
2361
2362
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2391
2392
2393
2394
2395
2396
2401
2408
2412
2413
2417
2418
2419
2424
2425
2426
2427
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2461
2462
2463
2464
2465
2469
2470
2474
2475
2476
2483
2484
2485
2486
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2516
2517
2522
2523
2525
2526
2527
2528
2529
2534
2535
2536
2537
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2562
2563
2564
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2587
2588
2589
2590
2594
2595
2596
2597
2598
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2615
2616
2617
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2640
2641
2642
2643
2644
2647
2648
2649
2653
2654
2655
2656
2657
2658
2659
2662
2663
2664
2668
2669
2670
2671
2672
2673
2674
2676
2677
2692
2693
2694
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2716
2717
2718
2719
2721
2722
2723
2725
2726
2727
2728
2731
2735
2736
2740
2741
2742
2743
2744
2754
2755
2756
2760
2761
2762
2763
2773
2777
2778
2779
2780
2781
2783
2787
2791
2792
2794
2795
2796
2798
2799
2813
2814
2815
2816
2817
2818
2821
2822
2832
2833
2834
2835
2847
2848
2849
2850
2860
2861
2862
2863
2864
2865
2866
2868
2869
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2887
2891
2895
2896
2898
2899
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2920
2921
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2945
2946
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2969
2973
2974
2978
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3021
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3037
3038
3039
3041
3042
3043
3044
3045
3046
3049
3050
3051
3052
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3070
3071
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3087
3088
3089
3092
3093
3094
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3115
3116
3117
3121
3122
3123
3126
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3185
3186
3187
3188
3191
3192
3193
3195
3196
3197
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3212
3213
3214
3215
3216
3217
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3240
3241
3242
3243
3251
3252
3253
3254
3255
3256
3257
3258
3262
3263
3264
3265
3266
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3292
3293
3294
3295
3296
3297
3298
3299
3307
3308
3309
3310
3318
3319
3325
3330
3331
3332
3333
3334
3335
3336
3337
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3355
3359
3360
3361
3362
3363
3364
3365
3366
3367
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3399
3400
3403
3404
3405
3406
3407
3409
3410
3411
3412
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3436
3440
3441
3442
3443
3444
3454
3455
3456
3460
3461
3462
3463
3464
3469
3470
3471
3472
3473
3474
3475
3478
3479
3480
3481
3484
3485
3486
3492
3496
3497
3498
3499
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3524
3529
3544
3545
3546
3547
3548
3549
3550
3551
3552
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3580
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3615
3616
3617
3618
3619
3620
3621
3624
3625
3626
3627
3630
3631
3632
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3650
3651
3652
3653
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3687
3688
3691
3692
3693
3694
3697
3698
3701
3702
3703
3706
3707
3708
3712
3713
3714
3715
3716
3717
3733
3734
3735
3736
3740
3741
3743
3744
3745
3746
3749
3750
3753
3754
3755
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3779
3780
3785
3786
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3824
3825
3826
3827
3828
3829
3830
3836
3837
3838
3839
3840
3843
3844
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3871
3872
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3892
3893
3894
3898
3899
3902
3903
3904
3905
3911
3912
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3955
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3994
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4022
4023
4024
4027
4028
4029
4032
4036
4040
4041
4043
4044
4045
4052
4056
4057
4058
4059
4060
4061
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4089
4090
4091
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4115
4116
4117
4118
4119
4121
4122
4123
4124
4125
4126
4131
4135
4139
4140
4142
4143
4144
4145
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4165
4166
4170
4171
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4194
4195
4196
4200
4204
4208
4209
4210
4211
4212
4216
4217
4218
4221
4222
4223
4226
4227
4228
4229
4230
4232
4236
4240
4241
4247
4248
4249
4256
4260
4261
4262
4263
4267
4268
4272
4273
4277
4278
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4303
4307
4308
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4331
4335
4336
4340
4341
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4361
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4414
4415
4416
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4434
4437
4440
4443
4446
4447
4451
4452
4453
4455
4456
4457
4458
4459
4460
4461
4462
4464
4465
4466
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4519
4520
4521
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4543
4544
4545
4548
4549
4550
4551
4552
4553
4556
4557
4562
4563
4564
4565
4566
4568
4569
4572
4573
4578
4579
4580
4581
4582
4583
4584
4588
4589
4591
4592
4593
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4622
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4656
4657
4658
4662
4663
4667
4668
4669
4670
4671
4672
4673
4674
4675
4686
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4729
4730
4731
4735
4736
4740
4741
4742
4743
4744
4745
4746
4747
4753
4754
4758
4763
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4798
4799
4800
4801
4802
4803
4804
4805
4809
4813
4817
4829
4834
4841
4842
4843
4844
4845
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4877
4881
4882
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4932
4933
4934
4935
4936
4937
4938
4942
4946
4950
4962
4967
4973
4974
4975
4976
4977
4979
4980
4981
4982
4983
4984
4989
4995
4996
4997
4998
5000
5004
5005
5008
5009
5010
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5061
5062
5063
5064
5065
5067
5068
5069
5070
5071
5072
5077
5083
5084
5085
5086
5088
5092
5093
5096
5097
5098
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5119
5120
5121
5122
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5150
5151
5152
5153
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5189
5190
5191
5193
5199
5203
5204
5205
5206
5213
5214
5215
5218
5219
5220
5221
5222
5223
5229
5230
5231
5233
5234
5235
5238
5242
5246
5247
5248
5249
5250
5251
5254
5255
5256
5257
5258
5259
5264
5265
5266
5267
5268
5269
5272
5276
5280
5281
5282
5283
5284
5285
5286
5287
5288
5291
5292
5293
5294
5295
5296
5297
5298
5308
5309
5310
/* ... */
#include <stdlib.h>
#include <string.h>
/* ... */
#define MPU_WRAPPERS_INCLUDED_FROM_API_FILE
#include "FreeRTOS.h"
#include "task.h"
#include "timers.h"
#include "stack_macros.h"
/* ... */
#undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE
/* ... */
#if ( configUSE_STATS_FORMATTING_FUNCTIONS == 1 )
/* ... */
#include <stdio.h>
/* ... */#endif
#if( configUSE_PREEMPTION == 0 )
/* ... */
#define taskYIELD_IF_USING_PREEMPTION()
/* ... */#else
#define taskYIELD_IF_USING_PREEMPTION() portYIELD_WITHIN_API()
#endif
#define taskNOT_WAITING_NOTIFICATION ( ( uint8_t ) 0 )
#define taskWAITING_NOTIFICATION ( ( uint8_t ) 1 )
#define taskNOTIFICATION_RECEIVED ( ( uint8_t ) 2 )
/* ... */
#define tskSTACK_FILL_BYTE ( 0xa5U )
#define tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB ( ( uint8_t ) 0 )
#define tskSTATICALLY_ALLOCATED_STACK_ONLY ( ( uint8_t ) 1 )
#define tskSTATICALLY_ALLOCATED_STACK_AND_TCB ( ( uint8_t ) 2 )
7 defines
/* ... */
#if( ( configCHECK_FOR_STACK_OVERFLOW > 1 ) || ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) )
#define tskSET_NEW_STACKS_TO_KNOWN_VALUE 1
#else
#define tskSET_NEW_STACKS_TO_KNOWN_VALUE 0
#endif
/* ... */
#define tskRUNNING_CHAR ( 'X' )
#define tskBLOCKED_CHAR ( 'B' )
#define tskREADY_CHAR ( 'R' )
#define tskDELETED_CHAR ( 'D' )
#define tskSUSPENDED_CHAR ( 'S' )
5 defines
/* ... */
#ifdef portREMOVE_STATIC_QUALIFIER
#define static
#endif
/* ... */
#ifndef configIDLE_TASK_NAME
#define configIDLE_TASK_NAME "IDLE"
#endif
#if ( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 )
/* ... */
/* ... */
#define taskRECORD_READY_PRIORITY( uxPriority ) \
{ \
if( ( uxPriority ) > uxTopReadyPriority ) \
{ \
uxTopReadyPriority = ( uxPriority ); \
...} \
...} ...
#define taskSELECT_HIGHEST_PRIORITY_TASK() \
{ \
UBaseType_t uxTopPriority = uxTopReadyPriority; \
\
\
while( listLIST_IS_EMPTY( &( pxReadyTasksLists[ uxTopPriority ] ) ) ) \
{ \
configASSERT( uxTopPriority ); \
--uxTopPriority; \
...} \
\
/* ... */ \
listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \
uxTopReadyPriority = uxTopPriority; \
...} ...
/* ... */
#define taskRESET_READY_PRIORITY( uxPriority )
#define portRESET_READY_PRIORITY( uxPriority, uxTopReadyPriority )
/* ... */
#else
/* ... */
#define taskRECORD_READY_PRIORITY( uxPriority ) portRECORD_READY_PRIORITY( uxPriority, uxTopReadyPriority )
#define taskSELECT_HIGHEST_PRIORITY_TASK() \
{ \
UBaseType_t uxTopPriority; \
\
\
portGET_HIGHEST_PRIORITY( uxTopPriority, uxTopReadyPriority ); \
configASSERT( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ uxTopPriority ] ) ) > 0 ); \
listGET_OWNER_OF_NEXT_ENTRY( pxCurrentTCB, &( pxReadyTasksLists[ uxTopPriority ] ) ); \
...} ...
/* ... */
#define taskRESET_READY_PRIORITY( uxPriority ) \
{ \
if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ ( uxPriority ) ] ) ) == ( UBaseType_t ) 0 ) \
{ \
portRESET_READY_PRIORITY( ( uxPriority ), ( uxTopReadyPriority ) ); \
...} \
...}...
/* ... */
#endif
/* ... */
#define taskSWITCH_DELAYED_LISTS() \
{ \
List_t *pxTemp; \
\
\
configASSERT( ( listLIST_IS_EMPTY( pxDelayedTaskList ) ) ); \
\
pxTemp = pxDelayedTaskList; \
pxDelayedTaskList = pxOverflowDelayedTaskList; \
pxOverflowDelayedTaskList = pxTemp; \
xNumOfOverflows++; \
prvResetNextTaskUnblockTime(); \
...}...
/* ... */
#define prvAddTaskToReadyList( pxTCB ) \
traceMOVED_TASK_TO_READY_STATE( pxTCB ); \
taskRECORD_READY_PRIORITY( ( pxTCB )->uxPriority ); \
vListInsertEnd( &( pxReadyTasksLists[ ( pxTCB )->uxPriority ] ), &( ( pxTCB )->xStateListItem ) ); \
tracePOST_MOVED_TASK_TO_READY_STATE( pxTCB )...
/* ... */
#define prvGetTCBFromHandle( pxHandle ) ( ( ( pxHandle ) == NULL ) ? pxCurrentTCB : ( pxHandle ) )
/* ... */
#if( configUSE_16_BIT_TICKS == 1 )
#define taskEVENT_LIST_ITEM_VALUE_IN_USE 0x8000U
#else
#define taskEVENT_LIST_ITEM_VALUE_IN_USE 0x80000000UL
#endif
/* ... */
typedef struct tskTaskControlBlock
{
volatile StackType_t *pxTopOfStack;
#if ( portUSING_MPU_WRAPPERS == 1 )
xMPU_SETTINGS xMPUSettings;
#endif
ListItem_t xStateListItem;
ListItem_t xEventListItem;
UBaseType_t uxPriority;
StackType_t *pxStack;
char pcTaskName[ configMAX_TASK_NAME_LEN ];
#if ( ( portSTACK_GROWTH > 0 ) || ( configRECORD_STACK_HIGH_ADDRESS == 1 ) )
StackType_t *pxEndOfStack;
#endif
#if ( portCRITICAL_NESTING_IN_TCB == 1 )
UBaseType_t uxCriticalNesting;
#endif
#if ( configUSE_TRACE_FACILITY == 1 )
UBaseType_t uxTCBNumber;
UBaseType_t uxTaskNumber; /* ... */
#endif
#if ( configUSE_MUTEXES == 1 )
UBaseType_t uxBasePriority;
UBaseType_t uxMutexesHeld;/* ... */
#endif
#if ( configUSE_APPLICATION_TASK_TAG == 1 )
TaskHookFunction_t pxTaskTag;
#endif
#if( configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0 )
void *pvThreadLocalStoragePointers[ configNUM_THREAD_LOCAL_STORAGE_POINTERS ];
#endif
#if( configGENERATE_RUN_TIME_STATS == 1 )
uint32_t ulRunTimeCounter;
#endif
#if ( configUSE_NEWLIB_REENTRANT == 1 )
/* ... */
struct _reent xNewLib_reent;/* ... */
#endif
#if( configUSE_TASK_NOTIFICATIONS == 1 )
volatile uint32_t ulNotifiedValue;
volatile uint8_t ucNotifyState;/* ... */
#endif
/* ... */
#if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 )
uint8_t ucStaticallyAllocated;
#endif
#if( INCLUDE_xTaskAbortDelay == 1 )
uint8_t ucDelayAborted;
#endif
#if( configUSE_POSIX_ERRNO == 1 )
int iTaskErrno;
#endif
...} tskTCB;
/* ... */
typedef tskTCB TCB_t;
/* ... */
PRIVILEGED_DATA TCB_t * volatile pxCurrentTCB = NULL;
/* ... */
PRIVILEGED_DATA static List_t pxReadyTasksLists[ configMAX_PRIORITIES ];
PRIVILEGED_DATA static List_t xDelayedTaskList1;
PRIVILEGED_DATA static List_t xDelayedTaskList2;
PRIVILEGED_DATA static List_t * volatile pxDelayedTaskList;
PRIVILEGED_DATA static List_t * volatile pxOverflowDelayedTaskList;
PRIVILEGED_DATA static List_t xPendingReadyList;
#if( INCLUDE_vTaskDelete == 1 )
PRIVILEGED_DATA static List_t xTasksWaitingTermination;
PRIVILEGED_DATA static volatile UBaseType_t uxDeletedTasksWaitingCleanUp = ( UBaseType_t ) 0U;
/* ... */
#endif
#if ( INCLUDE_vTaskSuspend == 1 )
PRIVILEGED_DATA static List_t xSuspendedTaskList;
/* ... */
#endif
/* ... */
#if ( configUSE_POSIX_ERRNO == 1 )
int FreeRTOS_errno = 0;
#endif
PRIVILEGED_DATA static volatile UBaseType_t uxCurrentNumberOfTasks = ( UBaseType_t ) 0U;
PRIVILEGED_DATA static volatile TickType_t xTickCount = ( TickType_t ) configINITIAL_TICK_COUNT;
PRIVILEGED_DATA static volatile UBaseType_t uxTopReadyPriority = tskIDLE_PRIORITY;
PRIVILEGED_DATA static volatile BaseType_t xSchedulerRunning = pdFALSE;
PRIVILEGED_DATA static volatile TickType_t xPendedTicks = ( TickType_t ) 0U;
PRIVILEGED_DATA static volatile BaseType_t xYieldPending = pdFALSE;
PRIVILEGED_DATA static volatile BaseType_t xNumOfOverflows = ( BaseType_t ) 0;
PRIVILEGED_DATA static UBaseType_t uxTaskNumber = ( UBaseType_t ) 0U;
PRIVILEGED_DATA static volatile TickType_t xNextTaskUnblockTime = ( TickType_t ) 0U;
PRIVILEGED_DATA static TaskHandle_t xIdleTaskHandle = NULL;
/* ... */
PRIVILEGED_DATA static volatile UBaseType_t uxSchedulerSuspended = ( UBaseType_t ) pdFALSE;
#if ( configGENERATE_RUN_TIME_STATS == 1 )
/* ... */
PRIVILEGED_DATA static uint32_t ulTaskSwitchedInTime = 0UL;
PRIVILEGED_DATA static uint32_t ulTotalRunTime = 0UL;
/* ... */
#endif
Other file private variables.
#if( configCHECK_FOR_STACK_OVERFLOW > 0 )
extern void vApplicationStackOverflowHook( TaskHandle_t xTask, char *pcTaskName );
/* ... */
#endif
#if( configUSE_TICK_HOOK > 0 )
extern void vApplicationTickHook( void );
/* ... */
#endif
#if( configSUPPORT_STATIC_ALLOCATION == 1 )
extern void vApplicationGetIdleTaskMemory( StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize );
/* ... */
#endif
Callback function prototypes.
/* ... */
#if ( INCLUDE_vTaskSuspend == 1 )
static BaseType_t prvTaskIsTaskSuspended( const TaskHandle_t xTask ) PRIVILEGED_FUNCTION;
/* ... */
#endif
/* ... */
static void prvInitialiseTaskLists( void ) PRIVILEGED_FUNCTION;
/* ... */
static portTASK_FUNCTION_PROTO( prvIdleTask, pvParameters );
/* ... */
#if ( INCLUDE_vTaskDelete == 1 )
static void prvDeleteTCB( TCB_t *pxTCB ) PRIVILEGED_FUNCTION;
/* ... */
#endif
/* ... */
static void prvCheckTasksWaitingTermination( void ) PRIVILEGED_FUNCTION;
/* ... */
static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely ) PRIVILEGED_FUNCTION;
/* ... */
#if ( configUSE_TRACE_FACILITY == 1 )
static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t *pxTaskStatusArray, List_t *pxList, eTaskState eState ) PRIVILEGED_FUNCTION;
/* ... */
#endif
/* ... */
#if ( INCLUDE_xTaskGetHandle == 1 )
static TCB_t *prvSearchForNameWithinSingleList( List_t *pxList, const char pcNameToQuery[] ) PRIVILEGED_FUNCTION;
/* ... */
#endif
/* ... */
#if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) )
static configSTACK_DEPTH_TYPE prvTaskCheckFreeStackSpace( const uint8_t * pucStackByte ) PRIVILEGED_FUNCTION;
/* ... */
#endif
/* ... */
#if ( configUSE_TICKLESS_IDLE != 0 )
static TickType_t prvGetExpectedIdleTime( void ) PRIVILEGED_FUNCTION;
/* ... */
#endif
/* ... */
static void prvResetNextTaskUnblockTime( void );
#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) )
/* ... */
static char *prvWriteNameToBuffer( char *pcBuffer, const char *pcTaskName ) PRIVILEGED_FUNCTION;
/* ... */
#endif
/* ... */
static void prvInitialiseNewTask( TaskFunction_t pxTaskCode,
const char * const pcName,
const uint32_t ulStackDepth,
void * const pvParameters,
UBaseType_t uxPriority,
TaskHandle_t * const pxCreatedTask,
TCB_t *pxNewTCB,
const MemoryRegion_t * const xRegions ) PRIVILEGED_FUNCTION;
/* ... */
static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB ) PRIVILEGED_FUNCTION;
/* ... */
#ifdef FREERTOS_TASKS_C_ADDITIONS_INIT
static void freertos_tasks_c_additions_init( void ) PRIVILEGED_FUNCTION;
/* ... */
#endif
#if( configSUPPORT_STATIC_ALLOCATION == 1 )
TaskHandle_t xTaskCreateStatic( TaskFunction_t pxTaskCode,
const char * const pcName,
const uint32_t ulStackDepth,
void * const pvParameters,
UBaseType_t uxPriority,
StackType_t * const puxStackBuffer,
StaticTask_t * const pxTaskBuffer )
{
TCB_t *pxNewTCB;
TaskHandle_t xReturn;
configASSERT( puxStackBuffer != NULL );
configASSERT( pxTaskBuffer != NULL );
#if( configASSERT_DEFINED == 1 )
{
/* ... */
volatile size_t xSize = sizeof( StaticTask_t );
configASSERT( xSize == sizeof( TCB_t ) );
( void ) xSize;
...}/* ... */
#endif
if( ( pxTaskBuffer != NULL ) && ( puxStackBuffer != NULL ) )
{
/* ... */
pxNewTCB = ( TCB_t * ) pxTaskBuffer;
pxNewTCB->pxStack = ( StackType_t * ) puxStackBuffer;
#if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 )
{
/* ... */
pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB;
...}/* ... */
#endif
prvInitialiseNewTask( pxTaskCode, pcName, ulStackDepth, pvParameters, uxPriority, &xReturn, pxNewTCB, NULL );
prvAddNewTaskToReadyList( pxNewTCB );
}if (( pxTaskBuffer != NULL ) && ( puxStackBuffer != NULL )) { ... }
else
{
xReturn = NULL;
}else { ... }
return xReturn;
}xTaskCreateStatic (TaskFunction_t pxTaskCode, const char * const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */ const uint32_t ulStackDepth, void * const pvParameters, UBaseType_t uxPriority, StackType_t * const puxStackBuffer, StaticTask_t * const pxTaskBuffer) { ... }
/* ... */
#endif
#if( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 1 ) )
BaseType_t xTaskCreateRestrictedStatic( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask )
{
TCB_t *pxNewTCB;
BaseType_t xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY;
configASSERT( pxTaskDefinition->puxStackBuffer != NULL );
configASSERT( pxTaskDefinition->pxTaskBuffer != NULL );
if( ( pxTaskDefinition->puxStackBuffer != NULL ) && ( pxTaskDefinition->pxTaskBuffer != NULL ) )
{
/* ... */
pxNewTCB = ( TCB_t * ) pxTaskDefinition->pxTaskBuffer;
pxNewTCB->pxStack = pxTaskDefinition->puxStackBuffer;
#if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 )
{
/* ... */
pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_AND_TCB;
...}/* ... */
#endif
prvInitialiseNewTask( pxTaskDefinition->pvTaskCode,
pxTaskDefinition->pcName,
( uint32_t ) pxTaskDefinition->usStackDepth,
pxTaskDefinition->pvParameters,
pxTaskDefinition->uxPriority,
pxCreatedTask, pxNewTCB,
pxTaskDefinition->xRegions );
prvAddNewTaskToReadyList( pxNewTCB );
xReturn = pdPASS;
}if (( pxTaskDefinition->puxStackBuffer != NULL ) && ( pxTaskDefinition->pxTaskBuffer != NULL )) { ... }
return xReturn;
}xTaskCreateRestrictedStatic (const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask) { ... }
/* ... */
#endif
#if( ( portUSING_MPU_WRAPPERS == 1 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )
BaseType_t xTaskCreateRestricted( const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask )
{
TCB_t *pxNewTCB;
BaseType_t xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY;
configASSERT( pxTaskDefinition->puxStackBuffer );
if( pxTaskDefinition->puxStackBuffer != NULL )
{
/* ... */
pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) );
if( pxNewTCB != NULL )
{
pxNewTCB->pxStack = pxTaskDefinition->puxStackBuffer;
#if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 )
{
/* ... */
pxNewTCB->ucStaticallyAllocated = tskSTATICALLY_ALLOCATED_STACK_ONLY;
...}/* ... */
#endif
prvInitialiseNewTask( pxTaskDefinition->pvTaskCode,
pxTaskDefinition->pcName,
( uint32_t ) pxTaskDefinition->usStackDepth,
pxTaskDefinition->pvParameters,
pxTaskDefinition->uxPriority,
pxCreatedTask, pxNewTCB,
pxTaskDefinition->xRegions );
prvAddNewTaskToReadyList( pxNewTCB );
xReturn = pdPASS;
}if (pxNewTCB != NULL) { ... }
}if (pxTaskDefinition->puxStackBuffer != NULL) { ... }
return xReturn;
}xTaskCreateRestricted (const TaskParameters_t * const pxTaskDefinition, TaskHandle_t *pxCreatedTask) { ... }
/* ... */
#endif
#if( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
BaseType_t xTaskCreate( TaskFunction_t pxTaskCode,
const char * const pcName,
const configSTACK_DEPTH_TYPE usStackDepth,
void * const pvParameters,
UBaseType_t uxPriority,
TaskHandle_t * const pxCreatedTask )
{
TCB_t *pxNewTCB;
BaseType_t xReturn;
/* ... */
#if( portSTACK_GROWTH > 0 )
{
/* ... */
pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) );
if( pxNewTCB != NULL )
{
/* ... */
pxNewTCB->pxStack = ( StackType_t * ) pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) );
if( pxNewTCB->pxStack == NULL )
{
vPortFree( pxNewTCB );
pxNewTCB = NULL;
}if (pxNewTCB->pxStack == NULL) { ... }
}if (pxNewTCB != NULL) { ... }
...}/* ... */
#else
{
StackType_t *pxStack;
pxStack = pvPortMalloc( ( ( ( size_t ) usStackDepth ) * sizeof( StackType_t ) ) );
if( pxStack != NULL )
{
pxNewTCB = ( TCB_t * ) pvPortMalloc( sizeof( TCB_t ) );
if( pxNewTCB != NULL )
{
pxNewTCB->pxStack = pxStack;
}if (pxNewTCB != NULL) { ... }
else
{
/* ... */
vPortFree( pxStack );
}else { ... }
}if (pxStack != NULL) { ... }
else
{
pxNewTCB = NULL;
}else { ... }
...}/* ... */
#endif
if( pxNewTCB != NULL )
{
#if( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 )
{
/* ... */
pxNewTCB->ucStaticallyAllocated = tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB;
...}/* ... */
#endif
prvInitialiseNewTask( pxTaskCode, pcName, ( uint32_t ) usStackDepth, pvParameters, uxPriority, pxCreatedTask, pxNewTCB, NULL );
prvAddNewTaskToReadyList( pxNewTCB );
xReturn = pdPASS;
}if (pxNewTCB != NULL) { ... }
else
{
xReturn = errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY;
}else { ... }
return xReturn;
}{ ... }
/* ... */#endif
static void prvInitialiseNewTask( TaskFunction_t pxTaskCode,
const char * const pcName,
const uint32_t ulStackDepth,
void * const pvParameters,
UBaseType_t uxPriority,
TaskHandle_t * const pxCreatedTask,
TCB_t *pxNewTCB,
const MemoryRegion_t * const xRegions )
{
StackType_t *pxTopOfStack;
UBaseType_t x;
#if( portUSING_MPU_WRAPPERS == 1 )
BaseType_t xRunPrivileged;
if( ( uxPriority & portPRIVILEGE_BIT ) != 0U )
{
xRunPrivileged = pdTRUE;
}if (( uxPriority & portPRIVILEGE_BIT ) != 0U) { ... }
else
{
xRunPrivileged = pdFALSE;
}else { ... }
uxPriority &= ~portPRIVILEGE_BIT;/* ... */
#endif
#if( tskSET_NEW_STACKS_TO_KNOWN_VALUE == 1 )
{
( void ) memset( pxNewTCB->pxStack, ( int ) tskSTACK_FILL_BYTE, ( size_t ) ulStackDepth * sizeof( StackType_t ) );
...}/* ... */
#endif
/* ... */
#if( portSTACK_GROWTH < 0 )
{
pxTopOfStack = &( pxNewTCB->pxStack[ ulStackDepth - ( uint32_t ) 1 ] );
pxTopOfStack = ( StackType_t * ) ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack ) & ( ~( ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) ) );
configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxTopOfStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) );
#if( configRECORD_STACK_HIGH_ADDRESS == 1 )
{
/* ... */
pxNewTCB->pxEndOfStack = pxTopOfStack;
...}/* ... */
#endif
...}/* ... */
#else
{
pxTopOfStack = pxNewTCB->pxStack;
configASSERT( ( ( ( portPOINTER_SIZE_TYPE ) pxNewTCB->pxStack & ( portPOINTER_SIZE_TYPE ) portBYTE_ALIGNMENT_MASK ) == 0UL ) );
/* ... */
pxNewTCB->pxEndOfStack = pxNewTCB->pxStack + ( ulStackDepth - ( uint32_t ) 1 );
...}/* ... */
#endif
if( pcName != NULL )
{
for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ )
{
pxNewTCB->pcTaskName[ x ] = pcName[ x ];
/* ... */
if( pcName[ x ] == ( char ) 0x00 )
{
break;
}if (pcName[ x ] == ( char ) 0x00) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}for (x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++) { ... }
/* ... */
pxNewTCB->pcTaskName[ configMAX_TASK_NAME_LEN - 1 ] = '\0';
}if (pcName != NULL) { ... }
else
{
/* ... */
pxNewTCB->pcTaskName[ 0 ] = 0x00;
}else { ... }
/* ... */
if( uxPriority >= ( UBaseType_t ) configMAX_PRIORITIES )
{
uxPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U;
}if (uxPriority >= ( UBaseType_t ) configMAX_PRIORITIES) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
pxNewTCB->uxPriority = uxPriority;
#if ( configUSE_MUTEXES == 1 )
{
pxNewTCB->uxBasePriority = uxPriority;
pxNewTCB->uxMutexesHeld = 0;
...}/* ... */
#endif
vListInitialiseItem( &( pxNewTCB->xStateListItem ) );
vListInitialiseItem( &( pxNewTCB->xEventListItem ) );
/* ... */
listSET_LIST_ITEM_OWNER( &( pxNewTCB->xStateListItem ), pxNewTCB );
listSET_LIST_ITEM_VALUE( &( pxNewTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriority );
listSET_LIST_ITEM_OWNER( &( pxNewTCB->xEventListItem ), pxNewTCB );
#if ( portCRITICAL_NESTING_IN_TCB == 1 )
{
pxNewTCB->uxCriticalNesting = ( UBaseType_t ) 0U;
...}/* ... */
#endif
#if ( configUSE_APPLICATION_TASK_TAG == 1 )
{
pxNewTCB->pxTaskTag = NULL;
...}/* ... */
#endif
#if ( configGENERATE_RUN_TIME_STATS == 1 )
{
pxNewTCB->ulRunTimeCounter = 0UL;
...}/* ... */
#endif
#if ( portUSING_MPU_WRAPPERS == 1 )
{
vPortStoreTaskMPUSettings( &( pxNewTCB->xMPUSettings ), xRegions, pxNewTCB->pxStack, ulStackDepth );
...}/* ... */
#else
{
( void ) xRegions;
...}/* ... */
#endif
#if( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 )
{
for( x = 0; x < ( UBaseType_t ) configNUM_THREAD_LOCAL_STORAGE_POINTERS; x++ )
{
pxNewTCB->pvThreadLocalStoragePointers[ x ] = NULL;
}for (x = 0; x < ( UBaseType_t ) configNUM_THREAD_LOCAL_STORAGE_POINTERS; x++) { ... }
...}/* ... */
#endif
#if ( configUSE_TASK_NOTIFICATIONS == 1 )
{
pxNewTCB->ulNotifiedValue = 0;
pxNewTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION;
...}/* ... */
#endif
#if ( configUSE_NEWLIB_REENTRANT == 1 )
{
/* ... */
_REENT_INIT_PTR( ( &( pxNewTCB->xNewLib_reent ) ) );
...}/* ... */
#endif
#if( INCLUDE_xTaskAbortDelay == 1 )
{
pxNewTCB->ucDelayAborted = pdFALSE;
...}/* ... */
#endif
/* ... */
#if( portUSING_MPU_WRAPPERS == 1 )
{
/* ... */
#if( portHAS_STACK_OVERFLOW_CHECKING == 1 )
{
#if( portSTACK_GROWTH < 0 )
{
pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxStack, pxTaskCode, pvParameters, xRunPrivileged );
...}/* ... */
#else
{
pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxEndOfStack, pxTaskCode, pvParameters, xRunPrivileged );
...}/* ... */
#endif
...}/* ... */
#else
{
pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters, xRunPrivileged );
...}/* ... */
#endif
...}/* ... */
#else
{
/* ... */
#if( portHAS_STACK_OVERFLOW_CHECKING == 1 )
{
#if( portSTACK_GROWTH < 0 )
{
pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxStack, pxTaskCode, pvParameters );
...}/* ... */
#else
{
pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxNewTCB->pxEndOfStack, pxTaskCode, pvParameters );
...}/* ... */
#endif
...}/* ... */
#else
{
pxNewTCB->pxTopOfStack = pxPortInitialiseStack( pxTopOfStack, pxTaskCode, pvParameters );
...}/* ... */
#endif
...}/* ... */
#endif
if( pxCreatedTask != NULL )
{
/* ... */
*pxCreatedTask = ( TaskHandle_t ) pxNewTCB;
}if (pxCreatedTask != NULL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}{ ... }
static void prvAddNewTaskToReadyList( TCB_t *pxNewTCB )
{
/* ... */
taskENTER_CRITICAL();
{
uxCurrentNumberOfTasks++;
if( pxCurrentTCB == NULL )
{
/* ... */
pxCurrentTCB = pxNewTCB;
if( uxCurrentNumberOfTasks == ( UBaseType_t ) 1 )
{
/* ... */
prvInitialiseTaskLists();
}if (uxCurrentNumberOfTasks == ( UBaseType_t ) 1) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (pxCurrentTCB == NULL) { ... }
else
{
/* ... */
if( xSchedulerRunning == pdFALSE )
{
if( pxCurrentTCB->uxPriority <= pxNewTCB->uxPriority )
{
pxCurrentTCB = pxNewTCB;
}if (pxCurrentTCB->uxPriority <= pxNewTCB->uxPriority) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (xSchedulerRunning == pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}else { ... }
uxTaskNumber++;
#if ( configUSE_TRACE_FACILITY == 1 )
{
pxNewTCB->uxTCBNumber = uxTaskNumber;
...}/* ... */
#endif
traceTASK_CREATE( pxNewTCB );
prvAddTaskToReadyList( pxNewTCB );
portSETUP_TCB( pxNewTCB );
...}
taskEXIT_CRITICAL();
if( xSchedulerRunning != pdFALSE )
{
/* ... */
if( pxCurrentTCB->uxPriority < pxNewTCB->uxPriority )
{
taskYIELD_IF_USING_PREEMPTION();
}if (pxCurrentTCB->uxPriority < pxNewTCB->uxPriority) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (xSchedulerRunning != pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}{ ... }
#if ( INCLUDE_vTaskDelete == 1 )
void vTaskDelete( TaskHandle_t xTaskToDelete )
{
TCB_t *pxTCB;
taskENTER_CRITICAL();
{
/* ... */
pxTCB = prvGetTCBFromHandle( xTaskToDelete );
if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 )
{
taskRESET_READY_PRIORITY( pxTCB->uxPriority );
}if (uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL )
{
( void ) uxListRemove( &( pxTCB->xEventListItem ) );
}if (listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
/* ... */
uxTaskNumber++;
if( pxTCB == pxCurrentTCB )
{
/* ... */
vListInsertEnd( &xTasksWaitingTermination, &( pxTCB->xStateListItem ) );
/* ... */
++uxDeletedTasksWaitingCleanUp;
/* ... */
traceTASK_DELETE( pxTCB );
/* ... */
portPRE_TASK_DELETE_HOOK( pxTCB, &xYieldPending );
}if (pxTCB == pxCurrentTCB) { ... }
else
{
--uxCurrentNumberOfTasks;
traceTASK_DELETE( pxTCB );
prvDeleteTCB( pxTCB );
/* ... */
prvResetNextTaskUnblockTime();
}else { ... }
...}
taskEXIT_CRITICAL();
/* ... */
if( xSchedulerRunning != pdFALSE )
{
if( pxTCB == pxCurrentTCB )
{
configASSERT( uxSchedulerSuspended == 0 );
portYIELD_WITHIN_API();
}if (pxTCB == pxCurrentTCB) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (xSchedulerRunning != pdFALSE) { ... }
}{ ... }
/* ... */#endif
#if ( INCLUDE_vTaskDelayUntil == 1 )
void vTaskDelayUntil( TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement )
{
TickType_t xTimeToWake;
BaseType_t xAlreadyYielded, xShouldDelay = pdFALSE;
configASSERT( pxPreviousWakeTime );
configASSERT( ( xTimeIncrement > 0U ) );
configASSERT( uxSchedulerSuspended == 0 );
vTaskSuspendAll();
{
/* ... */
const TickType_t xConstTickCount = xTickCount;
xTimeToWake = *pxPreviousWakeTime + xTimeIncrement;
if( xConstTickCount < *pxPreviousWakeTime )
{
/* ... */
if( ( xTimeToWake < *pxPreviousWakeTime ) && ( xTimeToWake > xConstTickCount ) )
{
xShouldDelay = pdTRUE;
}if (( xTimeToWake < *pxPreviousWakeTime ) && ( xTimeToWake > xConstTickCount )) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (xConstTickCount < *pxPreviousWakeTime) { ... }
else
{
/* ... */
if( ( xTimeToWake < *pxPreviousWakeTime ) || ( xTimeToWake > xConstTickCount ) )
{
xShouldDelay = pdTRUE;
}if (( xTimeToWake < *pxPreviousWakeTime ) || ( xTimeToWake > xConstTickCount )) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}else { ... }
*pxPreviousWakeTime = xTimeToWake;
if( xShouldDelay != pdFALSE )
{
traceTASK_DELAY_UNTIL( xTimeToWake );
/* ... */
prvAddCurrentTaskToDelayedList( xTimeToWake - xConstTickCount, pdFALSE );
}if (xShouldDelay != pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}
xAlreadyYielded = xTaskResumeAll();
/* ... */
if( xAlreadyYielded == pdFALSE )
{
portYIELD_WITHIN_API();
}if (xAlreadyYielded == pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}vTaskDelayUntil (TickType_t * const pxPreviousWakeTime, const TickType_t xTimeIncrement) { ... }
/* ... */
#endif
#if ( INCLUDE_vTaskDelay == 1 )
void vTaskDelay( const TickType_t xTicksToDelay )
{
BaseType_t xAlreadyYielded = pdFALSE;
if( xTicksToDelay > ( TickType_t ) 0U )
{
configASSERT( uxSchedulerSuspended == 0 );
vTaskSuspendAll();
{
traceTASK_DELAY();
/* ... */
prvAddCurrentTaskToDelayedList( xTicksToDelay, pdFALSE );
...}
xAlreadyYielded = xTaskResumeAll();
}if (xTicksToDelay > ( TickType_t ) 0U) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
/* ... */
if( xAlreadyYielded == pdFALSE )
{
portYIELD_WITHIN_API();
}if (xAlreadyYielded == pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}{ ... }
/* ... */#endif
#if( ( INCLUDE_eTaskGetState == 1 ) || ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_xTaskAbortDelay == 1 ) )
eTaskState eTaskGetState( TaskHandle_t xTask )
{
eTaskState eReturn;
List_t const * pxStateList, *pxDelayedList, *pxOverflowedDelayedList;
const TCB_t * const pxTCB = xTask;
configASSERT( pxTCB );
if( pxTCB == pxCurrentTCB )
{
eReturn = eRunning;
}if (pxTCB == pxCurrentTCB) { ... }
else
{
taskENTER_CRITICAL();
{
pxStateList = listLIST_ITEM_CONTAINER( &( pxTCB->xStateListItem ) );
pxDelayedList = pxDelayedTaskList;
pxOverflowedDelayedList = pxOverflowDelayedTaskList;
...}
taskEXIT_CRITICAL();
if( ( pxStateList == pxDelayedList ) || ( pxStateList == pxOverflowedDelayedList ) )
{
/* ... */
eReturn = eBlocked;
}if (( pxStateList == pxDelayedList ) || ( pxStateList == pxOverflowedDelayedList )) { ... }
#if ( INCLUDE_vTaskSuspend == 1 )
else if( pxStateList == &xSuspendedTaskList )
{
/* ... */
if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL )
{
#if( configUSE_TASK_NOTIFICATIONS == 1 )
{
/* ... */
if( pxTCB->ucNotifyState == taskWAITING_NOTIFICATION )
{
eReturn = eBlocked;
}if (pxTCB->ucNotifyState == taskWAITING_NOTIFICATION) { ... }
else
{
eReturn = eSuspended;
}else { ... }
...}/* ... */
#else
{
eReturn = eSuspended;
...}/* ... */
#endif
}if (listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL) { ... }
else
{
eReturn = eBlocked;
}else { ... }
}else if (pxStateList == &xSuspendedTaskList) { ... }
/* ... */ #endif
#if ( INCLUDE_vTaskDelete == 1 )
else if( ( pxStateList == &xTasksWaitingTermination ) || ( pxStateList == NULL ) )
{
/* ... */
eReturn = eDeleted;
}else if (( pxStateList == &xTasksWaitingTermination ) || ( pxStateList == NULL )) { ... }
/* ... */ #endif
else
{
/* ... */
eReturn = eReady;
}else { ... }
}else { ... }
return eReturn;
}{ ... }
/* ... */
#endif
#if ( INCLUDE_uxTaskPriorityGet == 1 )
UBaseType_t uxTaskPriorityGet( const TaskHandle_t xTask )
{
TCB_t const *pxTCB;
UBaseType_t uxReturn;
taskENTER_CRITICAL();
{
/* ... */
pxTCB = prvGetTCBFromHandle( xTask );
uxReturn = pxTCB->uxPriority;
...}
taskEXIT_CRITICAL();
return uxReturn;
}{ ... }
/* ... */#endif
#if ( INCLUDE_uxTaskPriorityGet == 1 )
UBaseType_t uxTaskPriorityGetFromISR( const TaskHandle_t xTask )
{
TCB_t const *pxTCB;
UBaseType_t uxReturn, uxSavedInterruptState;
/* ... */
portASSERT_IF_INTERRUPT_PRIORITY_INVALID();
uxSavedInterruptState = portSET_INTERRUPT_MASK_FROM_ISR();
{
/* ... */
pxTCB = prvGetTCBFromHandle( xTask );
uxReturn = pxTCB->uxPriority;
...}
portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptState );
return uxReturn;
}{ ... }
/* ... */#endif
#if ( INCLUDE_vTaskPrioritySet == 1 )
void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority )
{
TCB_t *pxTCB;
UBaseType_t uxCurrentBasePriority, uxPriorityUsedOnEntry;
BaseType_t xYieldRequired = pdFALSE;
configASSERT( ( uxNewPriority < configMAX_PRIORITIES ) );
if( uxNewPriority >= ( UBaseType_t ) configMAX_PRIORITIES )
{
uxNewPriority = ( UBaseType_t ) configMAX_PRIORITIES - ( UBaseType_t ) 1U;
}if (uxNewPriority >= ( UBaseType_t ) configMAX_PRIORITIES) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
taskENTER_CRITICAL();
{
/* ... */
pxTCB = prvGetTCBFromHandle( xTask );
traceTASK_PRIORITY_SET( pxTCB, uxNewPriority );
#if ( configUSE_MUTEXES == 1 )
{
uxCurrentBasePriority = pxTCB->uxBasePriority;
...}/* ... */
#else
{
uxCurrentBasePriority = pxTCB->uxPriority;
...}/* ... */
#endif
if( uxCurrentBasePriority != uxNewPriority )
{
/* ... */
if( uxNewPriority > uxCurrentBasePriority )
{
if( pxTCB != pxCurrentTCB )
{
/* ... */
if( uxNewPriority >= pxCurrentTCB->uxPriority )
{
xYieldRequired = pdTRUE;
}if (uxNewPriority >= pxCurrentTCB->uxPriority) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (pxTCB != pxCurrentTCB) { ... }
else
{
/* ... */
}else { ... }
}if (uxNewPriority > uxCurrentBasePriority) { ... }
else if( pxTCB == pxCurrentTCB )
{
/* ... */
xYieldRequired = pdTRUE;
}else if (pxTCB == pxCurrentTCB) { ... }
else
{
/* ... */
}else { ... }
/* ... */
uxPriorityUsedOnEntry = pxTCB->uxPriority;
#if ( configUSE_MUTEXES == 1 )
{
/* ... */
if( pxTCB->uxBasePriority == pxTCB->uxPriority )
{
pxTCB->uxPriority = uxNewPriority;
}if (pxTCB->uxBasePriority == pxTCB->uxPriority) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
pxTCB->uxBasePriority = uxNewPriority;
...}/* ... */
#else
{
pxTCB->uxPriority = uxNewPriority;
...}/* ... */
#endif
/* ... */
if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL )
{
listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxNewPriority ) );
}if (( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
/* ... */
if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE )
{
/* ... */
if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 )
{
/* ... */
portRESET_READY_PRIORITY( uxPriorityUsedOnEntry, uxTopReadyPriority );
}if (uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
prvAddTaskToReadyList( pxTCB );
}if (listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
if( xYieldRequired != pdFALSE )
{
taskYIELD_IF_USING_PREEMPTION();
}if (xYieldRequired != pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
/* ... */
( void ) uxPriorityUsedOnEntry;
}if (uxCurrentBasePriority != uxNewPriority) { ... }
...}
taskEXIT_CRITICAL();
}{ ... }
/* ... */#endif
#if ( INCLUDE_vTaskSuspend == 1 )
void vTaskSuspend( TaskHandle_t xTaskToSuspend )
{
TCB_t *pxTCB;
taskENTER_CRITICAL();
{
/* ... */
pxTCB = prvGetTCBFromHandle( xTaskToSuspend );
traceTASK_SUSPEND( pxTCB );
/* ... */
if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 )
{
taskRESET_READY_PRIORITY( pxTCB->uxPriority );
}if (uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL )
{
( void ) uxListRemove( &( pxTCB->xEventListItem ) );
}if (listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
vListInsertEnd( &xSuspendedTaskList, &( pxTCB->xStateListItem ) );
#if( configUSE_TASK_NOTIFICATIONS == 1 )
{
if( pxTCB->ucNotifyState == taskWAITING_NOTIFICATION )
{
/* ... */
pxTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION;
}if (pxTCB->ucNotifyState == taskWAITING_NOTIFICATION) { ... }
...}/* ... */
#endif
...}
taskEXIT_CRITICAL();
if( xSchedulerRunning != pdFALSE )
{
/* ... */
taskENTER_CRITICAL();
{
prvResetNextTaskUnblockTime();
...}
taskEXIT_CRITICAL();
}if (xSchedulerRunning != pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
if( pxTCB == pxCurrentTCB )
{
if( xSchedulerRunning != pdFALSE )
{
configASSERT( uxSchedulerSuspended == 0 );
portYIELD_WITHIN_API();
}if (xSchedulerRunning != pdFALSE) { ... }
else
{
/* ... */
if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == uxCurrentNumberOfTasks )
{
/* ... */
pxCurrentTCB = NULL;
...}
else
{
vTaskSwitchContext();
}else { ... }
}else { ... }
}if (pxTCB == pxCurrentTCB) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}{ ... }
/* ... */#endif
#if ( INCLUDE_vTaskSuspend == 1 )
static BaseType_t prvTaskIsTaskSuspended( const TaskHandle_t xTask )
{
BaseType_t xReturn = pdFALSE;
const TCB_t * const pxTCB = xTask;
/* ... */
configASSERT( xTask );
if( listIS_CONTAINED_WITHIN( &xSuspendedTaskList, &( pxTCB->xStateListItem ) ) != pdFALSE )
{
if( listIS_CONTAINED_WITHIN( &xPendingReadyList, &( pxTCB->xEventListItem ) ) == pdFALSE )
{
/* ... */
if( listIS_CONTAINED_WITHIN( NULL, &( pxTCB->xEventListItem ) ) != pdFALSE )
{
xReturn = pdTRUE;
...}
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (listIS_CONTAINED_WITHIN( &xPendingReadyList, &( pxTCB->xEventListItem ) ) == pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (listIS_CONTAINED_WITHIN( &xSuspendedTaskList, &( pxTCB->xStateListItem ) ) != pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
return xReturn;
}{ ... }
/* ... */
#endif
#if ( INCLUDE_vTaskSuspend == 1 )
void vTaskResume( TaskHandle_t xTaskToResume )
{
TCB_t * const pxTCB = xTaskToResume;
configASSERT( xTaskToResume );
/* ... */
if( ( pxTCB != pxCurrentTCB ) && ( pxTCB != NULL ) )
{
taskENTER_CRITICAL();
{
if( prvTaskIsTaskSuspended( pxTCB ) != pdFALSE )
{
traceTASK_RESUME( pxTCB );
/* ... */
( void ) uxListRemove( &( pxTCB->xStateListItem ) );
prvAddTaskToReadyList( pxTCB );
if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority )
{
/* ... */
taskYIELD_IF_USING_PREEMPTION();
}if (pxTCB->uxPriority >= pxCurrentTCB->uxPriority) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (prvTaskIsTaskSuspended( pxTCB ) != pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}
taskEXIT_CRITICAL();
}if (( pxTCB != pxCurrentTCB ) && ( pxTCB != NULL )) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}{ ... }
/* ... */#endif
#if ( ( INCLUDE_xTaskResumeFromISR == 1 ) && ( INCLUDE_vTaskSuspend == 1 ) )
BaseType_t xTaskResumeFromISR( TaskHandle_t xTaskToResume )
{
BaseType_t xYieldRequired = pdFALSE;
TCB_t * const pxTCB = xTaskToResume;
UBaseType_t uxSavedInterruptStatus;
configASSERT( xTaskToResume );
/* ... */
portASSERT_IF_INTERRUPT_PRIORITY_INVALID();
uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR();
{
if( prvTaskIsTaskSuspended( pxTCB ) != pdFALSE )
{
traceTASK_RESUME_FROM_ISR( pxTCB );
if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE )
{
/* ... */
if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority )
{
xYieldRequired = pdTRUE;
}if (pxTCB->uxPriority >= pxCurrentTCB->uxPriority) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
( void ) uxListRemove( &( pxTCB->xStateListItem ) );
prvAddTaskToReadyList( pxTCB );
}if (uxSchedulerSuspended == ( UBaseType_t ) pdFALSE) { ... }
else
{
/* ... */
vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) );
}else { ... }
}if (prvTaskIsTaskSuspended( pxTCB ) != pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}
portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );
return xYieldRequired;
}{ ... }
/* ... */#endif
void vTaskStartScheduler( void )
{
BaseType_t xReturn;
#if( configSUPPORT_STATIC_ALLOCATION == 1 )
{
StaticTask_t *pxIdleTaskTCBBuffer = NULL;
StackType_t *pxIdleTaskStackBuffer = NULL;
uint32_t ulIdleTaskStackSize;
/* ... */
vApplicationGetIdleTaskMemory( &pxIdleTaskTCBBuffer, &pxIdleTaskStackBuffer, &ulIdleTaskStackSize );
xIdleTaskHandle = xTaskCreateStatic( prvIdleTask,
configIDLE_TASK_NAME,
ulIdleTaskStackSize,
( void * ) NULL,
portPRIVILEGE_BIT,
pxIdleTaskStackBuffer,
pxIdleTaskTCBBuffer );
if( xIdleTaskHandle != NULL )
{
xReturn = pdPASS;
}if (xIdleTaskHandle != NULL) { ... }
else
{
xReturn = pdFAIL;
}else { ... }
...}/* ... */
#else
{
xReturn = xTaskCreate( prvIdleTask,
configIDLE_TASK_NAME,
configMINIMAL_STACK_SIZE,
( void * ) NULL,
portPRIVILEGE_BIT,
&xIdleTaskHandle );
...}/* ... */
#endif
#if ( configUSE_TIMERS == 1 )
{
if( xReturn == pdPASS )
{
xReturn = xTimerCreateTimerTask();
}if (xReturn == pdPASS) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}/* ... */
#endif
if( xReturn == pdPASS )
{
/* ... */
#ifdef FREERTOS_TASKS_C_ADDITIONS_INIT
{
freertos_tasks_c_additions_init();
}/* ... */
if (xReturn == pdPASS) { ... } #endif
/* ... */
portDISABLE_INTERRUPTS();
#if ( configUSE_NEWLIB_REENTRANT == 1 )
{
/* ... */
_impure_ptr = &( pxCurrentTCB->xNewLib_reent );
...}/* ... */
#endif
xNextTaskUnblockTime = portMAX_DELAY;
xSchedulerRunning = pdTRUE;
xTickCount = ( TickType_t ) configINITIAL_TICK_COUNT;
/* ... */
portCONFIGURE_TIMER_FOR_RUN_TIME_STATS();
traceTASK_SWITCHED_IN();
/* ... */
if( xPortStartScheduler() != pdFALSE )
{
/* ... */
}if (xPortStartScheduler() != pdFALSE) { ... }
else
{
}else { ... }
}if (xReturn == pdPASS) { ... }
else
{
/* ... */
configASSERT( xReturn != errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY );
}else { ... }
/* ... */
( void ) xIdleTaskHandle;
}{ ... }
void vTaskEndScheduler( void )
{
/* ... */
portDISABLE_INTERRUPTS();
xSchedulerRunning = pdFALSE;
vPortEndScheduler();
}{ ... }
void vTaskSuspendAll( void )
{
/* ... */
/* ... */
portSOFTWARE_BARRIER();
/* ... */
++uxSchedulerSuspended;
/* ... */
portMEMORY_BARRIER();
}{ ... }
#if ( configUSE_TICKLESS_IDLE != 0 )
static TickType_t prvGetExpectedIdleTime( void )
{
TickType_t xReturn;
UBaseType_t uxHigherPriorityReadyTasks = pdFALSE;
/* ... */
#if( configUSE_PORT_OPTIMISED_TASK_SELECTION == 0 )
{
if( uxTopReadyPriority > tskIDLE_PRIORITY )
{
uxHigherPriorityReadyTasks = pdTRUE;
}if (uxTopReadyPriority > tskIDLE_PRIORITY) { ... }
...}/* ... */
#else
{
const UBaseType_t uxLeastSignificantBit = ( UBaseType_t ) 0x01;
/* ... */
if( uxTopReadyPriority > uxLeastSignificantBit )
{
uxHigherPriorityReadyTasks = pdTRUE;
}if (uxTopReadyPriority > uxLeastSignificantBit) { ... }
...}/* ... */
#endif
if( pxCurrentTCB->uxPriority > tskIDLE_PRIORITY )
{
xReturn = 0;
}if (pxCurrentTCB->uxPriority > tskIDLE_PRIORITY) { ... }
else if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > 1 )
{
/* ... */
xReturn = 0;
}else if (listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > 1) { ... }
else if( uxHigherPriorityReadyTasks != pdFALSE )
{
/* ... */
xReturn = 0;
}else if (uxHigherPriorityReadyTasks != pdFALSE) { ... }
else
{
xReturn = xNextTaskUnblockTime - xTickCount;
}else { ... }
return xReturn;
}prvGetExpectedIdleTime (void) { ... }
/* ... */
#endif
BaseType_t xTaskResumeAll( void )
{
TCB_t *pxTCB = NULL;
BaseType_t xAlreadyYielded = pdFALSE;
/* ... */
configASSERT( uxSchedulerSuspended );
/* ... */
taskENTER_CRITICAL();
{
--uxSchedulerSuspended;
if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE )
{
if( uxCurrentNumberOfTasks > ( UBaseType_t ) 0U )
{
/* ... */
while( listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE )
{
pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xPendingReadyList ) );
( void ) uxListRemove( &( pxTCB->xEventListItem ) );
( void ) uxListRemove( &( pxTCB->xStateListItem ) );
prvAddTaskToReadyList( pxTCB );
/* ... */
if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority )
{
xYieldPending = pdTRUE;
}if (pxTCB->uxPriority >= pxCurrentTCB->uxPriority) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}while (listLIST_IS_EMPTY( &xPendingReadyList ) == pdFALSE) { ... }
if( pxTCB != NULL )
{
/* ... */
prvResetNextTaskUnblockTime();
}if (pxTCB != NULL) { ... }
/* ... */
{
TickType_t xPendedCounts = xPendedTicks;
if( xPendedCounts > ( TickType_t ) 0U )
{
do
{
if( xTaskIncrementTick() != pdFALSE )
{
xYieldPending = pdTRUE;
}if (xTaskIncrementTick() != pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
--xPendedCounts;
...} while( xPendedCounts > ( TickType_t ) 0U );
xPendedTicks = 0;
}if (xPendedCounts > ( TickType_t ) 0U) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}
if( xYieldPending != pdFALSE )
{
#if( configUSE_PREEMPTION != 0 )
{
xAlreadyYielded = pdTRUE;
...}/* ... */
#endif
taskYIELD_IF_USING_PREEMPTION();
}if (xYieldPending != pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (uxCurrentNumberOfTasks > ( UBaseType_t ) 0U) { ... }
}if (uxSchedulerSuspended == ( UBaseType_t ) pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}
taskEXIT_CRITICAL();
return xAlreadyYielded;
}{ ... }
TickType_t xTaskGetTickCount( void )
{
TickType_t xTicks;
portTICK_TYPE_ENTER_CRITICAL();
{
xTicks = xTickCount;
...}
portTICK_TYPE_EXIT_CRITICAL();
return xTicks;
}{ ... }
TickType_t xTaskGetTickCountFromISR( void )
{
TickType_t xReturn;
UBaseType_t uxSavedInterruptStatus;
/* ... */
portASSERT_IF_INTERRUPT_PRIORITY_INVALID();
uxSavedInterruptStatus = portTICK_TYPE_SET_INTERRUPT_MASK_FROM_ISR();
{
xReturn = xTickCount;
...}
portTICK_TYPE_CLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );
return xReturn;
}{ ... }
UBaseType_t uxTaskGetNumberOfTasks( void )
{
/* ... */
return uxCurrentNumberOfTasks;
}{ ... }
char *pcTaskGetName( TaskHandle_t xTaskToQuery )
{
TCB_t *pxTCB;
/* ... */
pxTCB = prvGetTCBFromHandle( xTaskToQuery );
configASSERT( pxTCB );
return &( pxTCB->pcTaskName[ 0 ] );
...}
#if ( INCLUDE_xTaskGetHandle == 1 )
static TCB_t *prvSearchForNameWithinSingleList( List_t *pxList, const char pcNameToQuery[] )
{
TCB_t *pxNextTCB, *pxFirstTCB, *pxReturn = NULL;
UBaseType_t x;
char cNextChar;
BaseType_t xBreakLoop;
if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 )
{
listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList );
do
{
listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList );
/* ... */
xBreakLoop = pdFALSE;
for( x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++ )
{
cNextChar = pxNextTCB->pcTaskName[ x ];
if( cNextChar != pcNameToQuery[ x ] )
{
xBreakLoop = pdTRUE;
}if (cNextChar != pcNameToQuery[ x ]) { ... }
else if( cNextChar == ( char ) 0x00 )
{
/* ... */
pxReturn = pxNextTCB;
xBreakLoop = pdTRUE;
}else if (cNextChar == ( char ) 0x00) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
if( xBreakLoop != pdFALSE )
{
break;
}if (xBreakLoop != pdFALSE) { ... }
}for (x = ( UBaseType_t ) 0; x < ( UBaseType_t ) configMAX_TASK_NAME_LEN; x++) { ... }
if( pxReturn != NULL )
{
break;
}if (pxReturn != NULL) { ... }
...} while( pxNextTCB != pxFirstTCB );
}if (listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
return pxReturn;
}prvSearchForNameWithinSingleList (List_t *pxList, const char pcNameToQuery[]) { ... }
/* ... */
#endif
#if ( INCLUDE_xTaskGetHandle == 1 )
TaskHandle_t xTaskGetHandle( const char *pcNameToQuery )
{
UBaseType_t uxQueue = configMAX_PRIORITIES;
TCB_t* pxTCB;
configASSERT( strlen( pcNameToQuery ) < configMAX_TASK_NAME_LEN );
vTaskSuspendAll();
{
do
{
uxQueue--;
pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) &( pxReadyTasksLists[ uxQueue ] ), pcNameToQuery );
if( pxTCB != NULL )
{
break;
}if (pxTCB != NULL) { ... }
...} while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY );
if( pxTCB == NULL )
{
pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) pxDelayedTaskList, pcNameToQuery );
}if (pxTCB == NULL) { ... }
if( pxTCB == NULL )
{
pxTCB = prvSearchForNameWithinSingleList( ( List_t * ) pxOverflowDelayedTaskList, pcNameToQuery );
}if (pxTCB == NULL) { ... }
#if ( INCLUDE_vTaskSuspend == 1 )
{
if( pxTCB == NULL )
{
pxTCB = prvSearchForNameWithinSingleList( &xSuspendedTaskList, pcNameToQuery );
}if (pxTCB == NULL) { ... }
...}/* ... */
#endif
#if( INCLUDE_vTaskDelete == 1 )
{
if( pxTCB == NULL )
{
pxTCB = prvSearchForNameWithinSingleList( &xTasksWaitingTermination, pcNameToQuery );
}if (pxTCB == NULL) { ... }
...}/* ... */
#endif
...}
( void ) xTaskResumeAll();
return pxTCB;
...}
/* ... */
#endif
#if ( configUSE_TRACE_FACILITY == 1 )
UBaseType_t uxTaskGetSystemState( TaskStatus_t * const pxTaskStatusArray, const UBaseType_t uxArraySize, uint32_t * const pulTotalRunTime )
{
UBaseType_t uxTask = 0, uxQueue = configMAX_PRIORITIES;
vTaskSuspendAll();
{
if( uxArraySize >= uxCurrentNumberOfTasks )
{
/* ... */
do
{
uxQueue--;
uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &( pxReadyTasksLists[ uxQueue ] ), eReady );
...} while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY );
/* ... */
uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( List_t * ) pxDelayedTaskList, eBlocked );
uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), ( List_t * ) pxOverflowDelayedTaskList, eBlocked );
#if( INCLUDE_vTaskDelete == 1 )
{
/* ... */
uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xTasksWaitingTermination, eDeleted );
...}/* ... */
#endif
#if ( INCLUDE_vTaskSuspend == 1 )
{
/* ... */
uxTask += prvListTasksWithinSingleList( &( pxTaskStatusArray[ uxTask ] ), &xSuspendedTaskList, eSuspended );
...}/* ... */
#endif
#if ( configGENERATE_RUN_TIME_STATS == 1)
{
if( pulTotalRunTime != NULL )
{
#ifdef portALT_GET_RUN_TIME_COUNTER_VALUE
portALT_GET_RUN_TIME_COUNTER_VALUE( ( *pulTotalRunTime ) );
#else
*pulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE();
#endif
}if (pulTotalRunTime != NULL) { ... }
...}/* ... */
#else
{
if( pulTotalRunTime != NULL )
{
*pulTotalRunTime = 0;
}if (pulTotalRunTime != NULL) { ... }
...}/* ... */
#endif
}if (uxArraySize >= uxCurrentNumberOfTasks) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}
( void ) xTaskResumeAll();
return uxTask;
}{ ... }
/* ... */#endif
#if ( INCLUDE_xTaskGetIdleTaskHandle == 1 )
TaskHandle_t xTaskGetIdleTaskHandle( void )
{
/* ... */
configASSERT( ( xIdleTaskHandle != NULL ) );
return xIdleTaskHandle;
}xTaskGetIdleTaskHandle (void) { ... }
/* ... */
#endif
/* ... */
#if ( configUSE_TICKLESS_IDLE != 0 )
void vTaskStepTick( const TickType_t xTicksToJump )
{
/* ... */
configASSERT( ( xTickCount + xTicksToJump ) <= xNextTaskUnblockTime );
xTickCount += xTicksToJump;
traceINCREASE_TICK_COUNT( xTicksToJump );
}vTaskStepTick (const TickType_t xTicksToJump) { ... }
/* ... */
#endif
BaseType_t xTaskCatchUpTicks( TickType_t xTicksToCatchUp )
{
BaseType_t xYieldRequired = pdFALSE;
/* ... */
configASSERT( uxSchedulerSuspended == 0 );
/* ... */
vTaskSuspendAll();
xPendedTicks += xTicksToCatchUp;
xYieldRequired = xTaskResumeAll();
return xYieldRequired;
}{ ... }
#if ( INCLUDE_xTaskAbortDelay == 1 )
BaseType_t xTaskAbortDelay( TaskHandle_t xTask )
{
TCB_t *pxTCB = xTask;
BaseType_t xReturn;
configASSERT( pxTCB );
vTaskSuspendAll();
{
/* ... */
if( eTaskGetState( xTask ) == eBlocked )
{
xReturn = pdPASS;
/* ... */
( void ) uxListRemove( &( pxTCB->xStateListItem ) );
/* ... */
taskENTER_CRITICAL();
{
if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL )
{
( void ) uxListRemove( &( pxTCB->xEventListItem ) );
/* ... */
pxTCB->ucDelayAborted = pdTRUE;
}if (listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}
taskEXIT_CRITICAL();
prvAddTaskToReadyList( pxTCB );
/* ... */
#if ( configUSE_PREEMPTION == 1 )
{
/* ... */
if( pxTCB->uxPriority > pxCurrentTCB->uxPriority )
{
/* ... */
xYieldPending = pdTRUE;
}if (pxTCB->uxPriority > pxCurrentTCB->uxPriority) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}/* ... */
#endif
}if (eTaskGetState( xTask ) == eBlocked) { ... }
else
{
xReturn = pdFAIL;
}else { ... }
...}
( void ) xTaskResumeAll();
return xReturn;
}xTaskAbortDelay (TaskHandle_t xTask) { ... }
/* ... */
#endif
BaseType_t xTaskIncrementTick( void )
{
TCB_t * pxTCB;
TickType_t xItemValue;
BaseType_t xSwitchRequired = pdFALSE;
/* ... */
traceTASK_INCREMENT_TICK( xTickCount );
if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE )
{
/* ... */
const TickType_t xConstTickCount = xTickCount + ( TickType_t ) 1;
/* ... */
xTickCount = xConstTickCount;
if( xConstTickCount == ( TickType_t ) 0U )
{
taskSWITCH_DELAYED_LISTS();
...}
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
/* ... */
if( xConstTickCount >= xNextTaskUnblockTime )
{
for( ;; )
{
if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE )
{
/* ... */
xNextTaskUnblockTime = portMAX_DELAY;
break;
}if (listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE) { ... }
else
{
/* ... */
pxTCB = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList );
xItemValue = listGET_LIST_ITEM_VALUE( &( pxTCB->xStateListItem ) );
if( xConstTickCount < xItemValue )
{
/* ... */
xNextTaskUnblockTime = xItemValue;
break;
}if (xConstTickCount < xItemValue) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
( void ) uxListRemove( &( pxTCB->xStateListItem ) );
/* ... */
if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL )
{
( void ) uxListRemove( &( pxTCB->xEventListItem ) );
}if (listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
/* ... */
prvAddTaskToReadyList( pxTCB );
/* ... */
#if ( configUSE_PREEMPTION == 1 )
{
/* ... */
if( pxTCB->uxPriority >= pxCurrentTCB->uxPriority )
{
xSwitchRequired = pdTRUE;
}if (pxTCB->uxPriority >= pxCurrentTCB->uxPriority) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}/* ... */
#endif
}else { ... }
}for (;;) { ... }
}if (xConstTickCount >= xNextTaskUnblockTime) { ... }
/* ... */
#if ( ( configUSE_PREEMPTION == 1 ) && ( configUSE_TIME_SLICING == 1 ) )
{
if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( UBaseType_t ) 1 )
{
xSwitchRequired = pdTRUE;
}if (listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ pxCurrentTCB->uxPriority ] ) ) > ( UBaseType_t ) 1) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}/* ... */
#endif
#if ( configUSE_TICK_HOOK == 1 )
{
/* ... */
if( xPendedTicks == ( TickType_t ) 0 )
{
vApplicationTickHook();
}if (xPendedTicks == ( TickType_t ) 0) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}/* ... */
#endif
#if ( configUSE_PREEMPTION == 1 )
{
if( xYieldPending != pdFALSE )
{
xSwitchRequired = pdTRUE;
}if (xYieldPending != pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}/* ... */
#endif
}if (uxSchedulerSuspended == ( UBaseType_t ) pdFALSE) { ... }
else
{
++xPendedTicks;
/* ... */
#if ( configUSE_TICK_HOOK == 1 )
{
vApplicationTickHook();
...}/* ... */
#endif
}else { ... }
return xSwitchRequired;
}{ ... }
#if ( configUSE_APPLICATION_TASK_TAG == 1 )
void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction )
{
TCB_t *xTCB;
/* ... */
if( xTask == NULL )
{
xTCB = ( TCB_t * ) pxCurrentTCB;
}if (xTask == NULL) { ... }
else
{
xTCB = xTask;
}else { ... }
/* ... */
taskENTER_CRITICAL();
{
xTCB->pxTaskTag = pxHookFunction;
...}
taskEXIT_CRITICAL();
}vTaskSetApplicationTaskTag (TaskHandle_t xTask, TaskHookFunction_t pxHookFunction) { ... }
/* ... */
#endif
#if ( configUSE_APPLICATION_TASK_TAG == 1 )
TaskHookFunction_t xTaskGetApplicationTaskTag( TaskHandle_t xTask )
{
TCB_t *pxTCB;
TaskHookFunction_t xReturn;
pxTCB = prvGetTCBFromHandle( xTask );
/* ... */
taskENTER_CRITICAL();
{
xReturn = pxTCB->pxTaskTag;
...}
taskEXIT_CRITICAL();
return xReturn;
}xTaskGetApplicationTaskTag (TaskHandle_t xTask) { ... }
/* ... */
#endif
#if ( configUSE_APPLICATION_TASK_TAG == 1 )
TaskHookFunction_t xTaskGetApplicationTaskTagFromISR( TaskHandle_t xTask )
{
TCB_t *pxTCB;
TaskHookFunction_t xReturn;
UBaseType_t uxSavedInterruptStatus;
pxTCB = prvGetTCBFromHandle( xTask );
/* ... */
uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR();
{
xReturn = pxTCB->pxTaskTag;
...}
portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );
return xReturn;
}xTaskGetApplicationTaskTagFromISR (TaskHandle_t xTask) { ... }
/* ... */
#endif
#if ( configUSE_APPLICATION_TASK_TAG == 1 )
BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter )
{
TCB_t *xTCB;
BaseType_t xReturn;
if( xTask == NULL )
{
xTCB = pxCurrentTCB;
}if (xTask == NULL) { ... }
else
{
xTCB = xTask;
}else { ... }
if( xTCB->pxTaskTag != NULL )
{
xReturn = xTCB->pxTaskTag( pvParameter );
}if (xTCB->pxTaskTag != NULL) { ... }
else
{
xReturn = pdFAIL;
}else { ... }
return xReturn;
}xTaskCallApplicationTaskHook (TaskHandle_t xTask, void *pvParameter) { ... }
/* ... */
#endif
void vTaskSwitchContext( void )
{
if( uxSchedulerSuspended != ( UBaseType_t ) pdFALSE )
{
/* ... */
xYieldPending = pdTRUE;
}if (uxSchedulerSuspended != ( UBaseType_t ) pdFALSE) { ... }
else
{
xYieldPending = pdFALSE;
traceTASK_SWITCHED_OUT();
#if ( configGENERATE_RUN_TIME_STATS == 1 )
{
#ifdef portALT_GET_RUN_TIME_COUNTER_VALUE
portALT_GET_RUN_TIME_COUNTER_VALUE( ulTotalRunTime );
#else
ulTotalRunTime = portGET_RUN_TIME_COUNTER_VALUE();
#endif
/* ... */
if( ulTotalRunTime > ulTaskSwitchedInTime )
{
pxCurrentTCB->ulRunTimeCounter += ( ulTotalRunTime - ulTaskSwitchedInTime );
}if (ulTotalRunTime > ulTaskSwitchedInTime) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
ulTaskSwitchedInTime = ulTotalRunTime;
...}/* ... */
#endif
taskCHECK_FOR_STACK_OVERFLOW();
#if( configUSE_POSIX_ERRNO == 1 )
{
pxCurrentTCB->iTaskErrno = FreeRTOS_errno;
...}/* ... */
#endif
/* ... */
taskSELECT_HIGHEST_PRIORITY_TASK();
traceTASK_SWITCHED_IN();
#if( configUSE_POSIX_ERRNO == 1 )
{
FreeRTOS_errno = pxCurrentTCB->iTaskErrno;
...}/* ... */
#endif
#if ( configUSE_NEWLIB_REENTRANT == 1 )
{
/* ... */
_impure_ptr = &( pxCurrentTCB->xNewLib_reent );
...}/* ... */
#endif
}else { ... }
}{ ... }
void vTaskPlaceOnEventList( List_t * const pxEventList, const TickType_t xTicksToWait )
{
configASSERT( pxEventList );
/* ... */
/* ... */
vListInsert( pxEventList, &( pxCurrentTCB->xEventListItem ) );
prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE );
}{ ... }
void vTaskPlaceOnUnorderedEventList( List_t * pxEventList, const TickType_t xItemValue, const TickType_t xTicksToWait )
{
configASSERT( pxEventList );
/* ... */
configASSERT( uxSchedulerSuspended != 0 );
/* ... */
listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE );
/* ... */
vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) );
prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE );
}{ ... }
#if( configUSE_TIMERS == 1 )
void vTaskPlaceOnEventListRestricted( List_t * const pxEventList, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely )
{
configASSERT( pxEventList );
/* ... */
/* ... */
vListInsertEnd( pxEventList, &( pxCurrentTCB->xEventListItem ) );
/* ... */
if( xWaitIndefinitely != pdFALSE )
{
xTicksToWait = portMAX_DELAY;
}if (xWaitIndefinitely != pdFALSE) { ... }
traceTASK_DELAY_UNTIL( ( xTickCount + xTicksToWait ) );
prvAddCurrentTaskToDelayedList( xTicksToWait, xWaitIndefinitely );
}vTaskPlaceOnEventListRestricted (List_t * const pxEventList, TickType_t xTicksToWait, const BaseType_t xWaitIndefinitely) { ... }
/* ... */
#endif
BaseType_t xTaskRemoveFromEventList( const List_t * const pxEventList )
{
TCB_t *pxUnblockedTCB;
BaseType_t xReturn;
/* ... */
/* ... */
pxUnblockedTCB = listGET_OWNER_OF_HEAD_ENTRY( pxEventList );
configASSERT( pxUnblockedTCB );
( void ) uxListRemove( &( pxUnblockedTCB->xEventListItem ) );
if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE )
{
( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) );
prvAddTaskToReadyList( pxUnblockedTCB );
#if( configUSE_TICKLESS_IDLE != 0 )
{
/* ... */
prvResetNextTaskUnblockTime();
...}/* ... */
#endif
}if (uxSchedulerSuspended == ( UBaseType_t ) pdFALSE) { ... }
else
{
/* ... */
vListInsertEnd( &( xPendingReadyList ), &( pxUnblockedTCB->xEventListItem ) );
}else { ... }
if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority )
{
/* ... */
xReturn = pdTRUE;
/* ... */
xYieldPending = pdTRUE;
}if (pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority) { ... }
else
{
xReturn = pdFALSE;
}else { ... }
return xReturn;
}{ ... }
void vTaskRemoveFromUnorderedEventList( ListItem_t * pxEventListItem, const TickType_t xItemValue )
{
TCB_t *pxUnblockedTCB;
/* ... */
configASSERT( uxSchedulerSuspended != pdFALSE );
listSET_LIST_ITEM_VALUE( pxEventListItem, xItemValue | taskEVENT_LIST_ITEM_VALUE_IN_USE );
/* ... */
pxUnblockedTCB = listGET_LIST_ITEM_OWNER( pxEventListItem );
configASSERT( pxUnblockedTCB );
( void ) uxListRemove( pxEventListItem );
#if( configUSE_TICKLESS_IDLE != 0 )
{
/* ... */
prvResetNextTaskUnblockTime();
...}/* ... */
#endif
/* ... */
( void ) uxListRemove( &( pxUnblockedTCB->xStateListItem ) );
prvAddTaskToReadyList( pxUnblockedTCB );
if( pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority )
{
/* ... */
xYieldPending = pdTRUE;
}if (pxUnblockedTCB->uxPriority > pxCurrentTCB->uxPriority) { ... }
}{ ... }
void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut )
{
configASSERT( pxTimeOut );
taskENTER_CRITICAL();
{
pxTimeOut->xOverflowCount = xNumOfOverflows;
pxTimeOut->xTimeOnEntering = xTickCount;
...}
taskEXIT_CRITICAL();
}{ ... }
void vTaskInternalSetTimeOutState( TimeOut_t * const pxTimeOut )
{
pxTimeOut->xOverflowCount = xNumOfOverflows;
pxTimeOut->xTimeOnEntering = xTickCount;
}{ ... }
BaseType_t xTaskCheckForTimeOut( TimeOut_t * const pxTimeOut, TickType_t * const pxTicksToWait )
{
BaseType_t xReturn;
configASSERT( pxTimeOut );
configASSERT( pxTicksToWait );
taskENTER_CRITICAL();
{
const TickType_t xConstTickCount = xTickCount;
const TickType_t xElapsedTime = xConstTickCount - pxTimeOut->xTimeOnEntering;
#if( INCLUDE_xTaskAbortDelay == 1 )
if( pxCurrentTCB->ucDelayAborted != ( uint8_t ) pdFALSE )
{
/* ... */
pxCurrentTCB->ucDelayAborted = pdFALSE;
xReturn = pdTRUE;
}if (pxCurrentTCB->ucDelayAborted != ( uint8_t ) pdFALSE) { ... }
else/* ... */
#endif
#if ( INCLUDE_vTaskSuspend == 1 )
if( *pxTicksToWait == portMAX_DELAY )
{
/* ... */
xReturn = pdFALSE;
}if (*pxTicksToWait == portMAX_DELAY) { ... }
else/* ... */
#endif
if( ( xNumOfOverflows != pxTimeOut->xOverflowCount ) && ( xConstTickCount >= pxTimeOut->xTimeOnEntering ) )
{
/* ... */
xReturn = pdTRUE;
...}
else if( xElapsedTime < *pxTicksToWait )
{
*pxTicksToWait -= xElapsedTime;
vTaskInternalSetTimeOutState( pxTimeOut );
xReturn = pdFALSE;
...}
else
{
*pxTicksToWait = 0;
xReturn = pdTRUE;
}else { ... }
...}
taskEXIT_CRITICAL();
return xReturn;
}{ ... }
void vTaskMissedYield( void )
{
xYieldPending = pdTRUE;
}{ ... }
#if ( configUSE_TRACE_FACILITY == 1 )
UBaseType_t uxTaskGetTaskNumber( TaskHandle_t xTask )
{
UBaseType_t uxReturn;
TCB_t const *pxTCB;
if( xTask != NULL )
{
pxTCB = xTask;
uxReturn = pxTCB->uxTaskNumber;
}if (xTask != NULL) { ... }
else
{
uxReturn = 0U;
}else { ... }
return uxReturn;
}{ ... }
/* ... */#endif
#if ( configUSE_TRACE_FACILITY == 1 )
void vTaskSetTaskNumber( TaskHandle_t xTask, const UBaseType_t uxHandle )
{
TCB_t * pxTCB;
if( xTask != NULL )
{
pxTCB = xTask;
pxTCB->uxTaskNumber = uxHandle;
}if (xTask != NULL) { ... }
}{ ... }
/* ... */#endif
/* ... */
static portTASK_FUNCTION( prvIdleTask, pvParameters )
{
( void ) pvParameters;
/* ... */
/* ... */
portALLOCATE_SECURE_CONTEXT( configMINIMAL_SECURE_STACK_SIZE );
for( ;; )
{
/* ... */
prvCheckTasksWaitingTermination();
#if ( configUSE_PREEMPTION == 0 )
{
/* ... */
taskYIELD();
...}/* ... */
#endif
#if ( ( configUSE_PREEMPTION == 1 ) && ( configIDLE_SHOULD_YIELD == 1 ) )
{
/* ... */
if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( UBaseType_t ) 1 )
{
taskYIELD();
}if (listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( UBaseType_t ) 1) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}/* ... */
#endif
#if ( configUSE_IDLE_HOOK == 1 )
{
extern void vApplicationIdleHook( void );
/* ... */
vApplicationIdleHook();
...}/* ... */
#endif
/* ... */
#if ( configUSE_TICKLESS_IDLE != 0 )
{
TickType_t xExpectedIdleTime;
/* ... */
xExpectedIdleTime = prvGetExpectedIdleTime();
if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP )
{
vTaskSuspendAll();
{
/* ... */
configASSERT( xNextTaskUnblockTime >= xTickCount );
xExpectedIdleTime = prvGetExpectedIdleTime();
/* ... */
configPRE_SUPPRESS_TICKS_AND_SLEEP_PROCESSING( xExpectedIdleTime );
if( xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP )
{
traceLOW_POWER_IDLE_BEGIN();
portSUPPRESS_TICKS_AND_SLEEP( xExpectedIdleTime );
traceLOW_POWER_IDLE_END();
}if (xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}
( void ) xTaskResumeAll();
}if (xExpectedIdleTime >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}/* ... */
#endif
}for (;;) { ... }
}{ ... }
#if( configUSE_TICKLESS_IDLE != 0 )
eSleepModeStatus eTaskConfirmSleepModeStatus( void )
{
const UBaseType_t uxNonApplicationTasks = 1;
eSleepModeStatus eReturn = eStandardSleep;
if( listCURRENT_LIST_LENGTH( &xPendingReadyList ) != 0 )
{
eReturn = eAbortSleep;
}if (listCURRENT_LIST_LENGTH( &xPendingReadyList ) != 0) { ... }
else if( xYieldPending != pdFALSE )
{
eReturn = eAbortSleep;
}else if (xYieldPending != pdFALSE) { ... }
else
{
/* ... */
if( listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == ( uxCurrentNumberOfTasks - uxNonApplicationTasks ) )
{
eReturn = eNoTasksWaitingTimeout;
}if (listCURRENT_LIST_LENGTH( &xSuspendedTaskList ) == ( uxCurrentNumberOfTasks - uxNonApplicationTasks )) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}else { ... }
return eReturn;
}eTaskConfirmSleepModeStatus (void) { ... }
/* ... */
#endif
#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 )
void vTaskSetThreadLocalStoragePointer( TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue )
{
TCB_t *pxTCB;
if( xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS )
{
pxTCB = prvGetTCBFromHandle( xTaskToSet );
configASSERT( pxTCB != NULL );
pxTCB->pvThreadLocalStoragePointers[ xIndex ] = pvValue;
}if (xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS) { ... }
}vTaskSetThreadLocalStoragePointer (TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue) { ... }
/* ... */
#endif
#if ( configNUM_THREAD_LOCAL_STORAGE_POINTERS != 0 )
void *pvTaskGetThreadLocalStoragePointer( TaskHandle_t xTaskToQuery, BaseType_t xIndex )
{
void *pvReturn = NULL;
TCB_t *pxTCB;
if( xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS )
{
pxTCB = prvGetTCBFromHandle( xTaskToQuery );
pvReturn = pxTCB->pvThreadLocalStoragePointers[ xIndex ];
}if (xIndex < configNUM_THREAD_LOCAL_STORAGE_POINTERS) { ... }
else
{
pvReturn = NULL;
}else { ... }
return pvReturn;
}pvTaskGetThreadLocalStoragePointer (TaskHandle_t xTaskToQuery, BaseType_t xIndex) { ... }
/* ... */
#endif
#if ( portUSING_MPU_WRAPPERS == 1 )
void vTaskAllocateMPURegions( TaskHandle_t xTaskToModify, const MemoryRegion_t * const xRegions )
{
TCB_t *pxTCB;
/* ... */
pxTCB = prvGetTCBFromHandle( xTaskToModify );
vPortStoreTaskMPUSettings( &( pxTCB->xMPUSettings ), xRegions, NULL, 0 );
}vTaskAllocateMPURegions (TaskHandle_t xTaskToModify, const MemoryRegion_t * const xRegions) { ... }
/* ... */
#endif
static void prvInitialiseTaskLists( void )
{
UBaseType_t uxPriority;
for( uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++ )
{
vListInitialise( &( pxReadyTasksLists[ uxPriority ] ) );
}for (uxPriority = ( UBaseType_t ) 0U; uxPriority < ( UBaseType_t ) configMAX_PRIORITIES; uxPriority++) { ... }
vListInitialise( &xDelayedTaskList1 );
vListInitialise( &xDelayedTaskList2 );
vListInitialise( &xPendingReadyList );
#if ( INCLUDE_vTaskDelete == 1 )
{
vListInitialise( &xTasksWaitingTermination );
...}/* ... */
#endif
#if ( INCLUDE_vTaskSuspend == 1 )
{
vListInitialise( &xSuspendedTaskList );
...}/* ... */
#endif
/* ... */
pxDelayedTaskList = &xDelayedTaskList1;
pxOverflowDelayedTaskList = &xDelayedTaskList2;
}{ ... }
static void prvCheckTasksWaitingTermination( void )
{
#if ( INCLUDE_vTaskDelete == 1 )
{
TCB_t *pxTCB;
/* ... */
while( uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U )
{
taskENTER_CRITICAL();
{
pxTCB = listGET_OWNER_OF_HEAD_ENTRY( ( &xTasksWaitingTermination ) );
( void ) uxListRemove( &( pxTCB->xStateListItem ) );
--uxCurrentNumberOfTasks;
--uxDeletedTasksWaitingCleanUp;
...}
taskEXIT_CRITICAL();
prvDeleteTCB( pxTCB );
}while (uxDeletedTasksWaitingCleanUp > ( UBaseType_t ) 0U) { ... }
...}/* ... */
#endif
}{ ... }
#if( configUSE_TRACE_FACILITY == 1 )
void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState )
{
TCB_t *pxTCB;
pxTCB = prvGetTCBFromHandle( xTask );
pxTaskStatus->xHandle = ( TaskHandle_t ) pxTCB;
pxTaskStatus->pcTaskName = ( const char * ) &( pxTCB->pcTaskName [ 0 ] );
pxTaskStatus->uxCurrentPriority = pxTCB->uxPriority;
pxTaskStatus->pxStackBase = pxTCB->pxStack;
pxTaskStatus->xTaskNumber = pxTCB->uxTCBNumber;
#if ( configUSE_MUTEXES == 1 )
{
pxTaskStatus->uxBasePriority = pxTCB->uxBasePriority;
...}/* ... */
#else
{
pxTaskStatus->uxBasePriority = 0;
...}/* ... */
#endif
#if ( configGENERATE_RUN_TIME_STATS == 1 )
{
pxTaskStatus->ulRunTimeCounter = pxTCB->ulRunTimeCounter;
...}/* ... */
#else
{
pxTaskStatus->ulRunTimeCounter = 0;
...}/* ... */
#endif
/* ... */
if( eState != eInvalid )
{
if( pxTCB == pxCurrentTCB )
{
pxTaskStatus->eCurrentState = eRunning;
}if (pxTCB == pxCurrentTCB) { ... }
else
{
pxTaskStatus->eCurrentState = eState;
#if ( INCLUDE_vTaskSuspend == 1 )
{
/* ... */
if( eState == eSuspended )
{
vTaskSuspendAll();
{
if( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL )
{
pxTaskStatus->eCurrentState = eBlocked;
}if (listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) != NULL) { ... }
...}
( void ) xTaskResumeAll();
}if (eState == eSuspended) { ... }
...}/* ... */
#endif
}else { ... }
}if (eState != eInvalid) { ... }
else
{
pxTaskStatus->eCurrentState = eTaskGetState( pxTCB );
}else { ... }
/* ... */
if( xGetFreeStackSpace != pdFALSE )
{
#if ( portSTACK_GROWTH > 0 )
{
pxTaskStatus->usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( uint8_t * ) pxTCB->pxEndOfStack );
...}/* ... */
#else
{
pxTaskStatus->usStackHighWaterMark = prvTaskCheckFreeStackSpace( ( uint8_t * ) pxTCB->pxStack );
...}/* ... */
#endif
}if (xGetFreeStackSpace != pdFALSE) { ... }
else
{
pxTaskStatus->usStackHighWaterMark = 0;
}else { ... }
}{ ... }
/* ... */#endif
#if ( configUSE_TRACE_FACILITY == 1 )
static UBaseType_t prvListTasksWithinSingleList( TaskStatus_t *pxTaskStatusArray, List_t *pxList, eTaskState eState )
{
configLIST_VOLATILE TCB_t *pxNextTCB, *pxFirstTCB;
UBaseType_t uxTask = 0;
if( listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0 )
{
listGET_OWNER_OF_NEXT_ENTRY( pxFirstTCB, pxList );
/* ... */
do
{
listGET_OWNER_OF_NEXT_ENTRY( pxNextTCB, pxList );
vTaskGetInfo( ( TaskHandle_t ) pxNextTCB, &( pxTaskStatusArray[ uxTask ] ), pdTRUE, eState );
uxTask++;
...} while( pxNextTCB != pxFirstTCB );
}if (listCURRENT_LIST_LENGTH( pxList ) > ( UBaseType_t ) 0) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
return uxTask;
}{ ... }
/* ... */#endif
#if ( ( configUSE_TRACE_FACILITY == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark == 1 ) || ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 ) )
static configSTACK_DEPTH_TYPE prvTaskCheckFreeStackSpace( const uint8_t * pucStackByte )
{
uint32_t ulCount = 0U;
while( *pucStackByte == ( uint8_t ) tskSTACK_FILL_BYTE )
{
pucStackByte -= portSTACK_GROWTH;
ulCount++;
}while (*pucStackByte == ( uint8_t ) tskSTACK_FILL_BYTE) { ... }
ulCount /= ( uint32_t ) sizeof( StackType_t );
return ( configSTACK_DEPTH_TYPE ) ulCount;
}{ ... }
/* ... */#endif
#if ( INCLUDE_uxTaskGetStackHighWaterMark2 == 1 )
/* ... */
configSTACK_DEPTH_TYPE uxTaskGetStackHighWaterMark2( TaskHandle_t xTask )
{
TCB_t *pxTCB;
uint8_t *pucEndOfStack;
configSTACK_DEPTH_TYPE uxReturn;
/* ... */
pxTCB = prvGetTCBFromHandle( xTask );
#if portSTACK_GROWTH < 0
{
pucEndOfStack = ( uint8_t * ) pxTCB->pxStack;
...}/* ... */
#else
{
pucEndOfStack = ( uint8_t * ) pxTCB->pxEndOfStack;
...}/* ... */
#endif
uxReturn = prvTaskCheckFreeStackSpace( pucEndOfStack );
return uxReturn;
}uxTaskGetStackHighWaterMark2 (TaskHandle_t xTask) { ... }
/* ... */
#endif
#if ( INCLUDE_uxTaskGetStackHighWaterMark == 1 )
UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask )
{
TCB_t *pxTCB;
uint8_t *pucEndOfStack;
UBaseType_t uxReturn;
pxTCB = prvGetTCBFromHandle( xTask );
#if portSTACK_GROWTH < 0
{
pucEndOfStack = ( uint8_t * ) pxTCB->pxStack;
...}/* ... */
#else
{
pucEndOfStack = ( uint8_t * ) pxTCB->pxEndOfStack;
...}/* ... */
#endif
uxReturn = ( UBaseType_t ) prvTaskCheckFreeStackSpace( pucEndOfStack );
return uxReturn;
}uxTaskGetStackHighWaterMark (TaskHandle_t xTask) { ... }
/* ... */
#endif
#if ( INCLUDE_vTaskDelete == 1 )
static void prvDeleteTCB( TCB_t *pxTCB )
{
/* ... */
portCLEAN_UP_TCB( pxTCB );
/* ... */
#if ( configUSE_NEWLIB_REENTRANT == 1 )
{
_reclaim_reent( &( pxTCB->xNewLib_reent ) );
...}/* ... */
#endif
#if( ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) && ( configSUPPORT_STATIC_ALLOCATION == 0 ) && ( portUSING_MPU_WRAPPERS == 0 ) )
{
/* ... */
vPortFree( pxTCB->pxStack );
vPortFree( pxTCB );
...}/* ... */
#elif( tskSTATIC_AND_DYNAMIC_ALLOCATION_POSSIBLE != 0 )
{
/* ... */
if( pxTCB->ucStaticallyAllocated == tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB )
{
/* ... */
vPortFree( pxTCB->pxStack );
vPortFree( pxTCB );
}if (pxTCB->ucStaticallyAllocated == tskDYNAMICALLY_ALLOCATED_STACK_AND_TCB) { ... }
else if( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_ONLY )
{
/* ... */
vPortFree( pxTCB );
}else if (pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_ONLY) { ... }
else
{
/* ... */
configASSERT( pxTCB->ucStaticallyAllocated == tskSTATICALLY_ALLOCATED_STACK_AND_TCB );
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}/* ... */
#endif
}{ ... }
/* ... */#endif
static void prvResetNextTaskUnblockTime( void )
{
TCB_t *pxTCB;
if( listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE )
{
/* ... */
xNextTaskUnblockTime = portMAX_DELAY;
}if (listLIST_IS_EMPTY( pxDelayedTaskList ) != pdFALSE) { ... }
else
{
/* ... */
( pxTCB ) = listGET_OWNER_OF_HEAD_ENTRY( pxDelayedTaskList );
xNextTaskUnblockTime = listGET_LIST_ITEM_VALUE( &( ( pxTCB )->xStateListItem ) );
}else { ... }
}{ ... }
#if ( ( INCLUDE_xTaskGetCurrentTaskHandle == 1 ) || ( configUSE_MUTEXES == 1 ) )
TaskHandle_t xTaskGetCurrentTaskHandle( void )
{
TaskHandle_t xReturn;
/* ... */
xReturn = pxCurrentTCB;
return xReturn;
}{ ... }
/* ... */#endif
#if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) )
BaseType_t xTaskGetSchedulerState( void )
{
BaseType_t xReturn;
if( xSchedulerRunning == pdFALSE )
{
xReturn = taskSCHEDULER_NOT_STARTED;
}if (xSchedulerRunning == pdFALSE) { ... }
else
{
if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE )
{
xReturn = taskSCHEDULER_RUNNING;
}if (uxSchedulerSuspended == ( UBaseType_t ) pdFALSE) { ... }
else
{
xReturn = taskSCHEDULER_SUSPENDED;
}else { ... }
}else { ... }
return xReturn;
}{ ... }
/* ... */#endif
#if ( configUSE_MUTEXES == 1 )
BaseType_t xTaskPriorityInherit( TaskHandle_t const pxMutexHolder )
{
TCB_t * const pxMutexHolderTCB = pxMutexHolder;
BaseType_t xReturn = pdFALSE;
/* ... */
if( pxMutexHolder != NULL )
{
/* ... */
if( pxMutexHolderTCB->uxPriority < pxCurrentTCB->uxPriority )
{
/* ... */
if( ( listGET_LIST_ITEM_VALUE( &( pxMutexHolderTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL )
{
listSET_LIST_ITEM_VALUE( &( pxMutexHolderTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority );
}if (( listGET_LIST_ITEM_VALUE( &( pxMutexHolderTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
/* ... */
if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ pxMutexHolderTCB->uxPriority ] ), &( pxMutexHolderTCB->xStateListItem ) ) != pdFALSE )
{
if( uxListRemove( &( pxMutexHolderTCB->xStateListItem ) ) == ( UBaseType_t ) 0 )
{
/* ... */
portRESET_READY_PRIORITY( pxMutexHolderTCB->uxPriority, uxTopReadyPriority );
}if (uxListRemove( &( pxMutexHolderTCB->xStateListItem ) ) == ( UBaseType_t ) 0) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority;
prvAddTaskToReadyList( pxMutexHolderTCB );
}if (listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ pxMutexHolderTCB->uxPriority ] ), &( pxMutexHolderTCB->xStateListItem ) ) != pdFALSE) { ... }
else
{
pxMutexHolderTCB->uxPriority = pxCurrentTCB->uxPriority;
}else { ... }
traceTASK_PRIORITY_INHERIT( pxMutexHolderTCB, pxCurrentTCB->uxPriority );
xReturn = pdTRUE;
}if (pxMutexHolderTCB->uxPriority < pxCurrentTCB->uxPriority) { ... }
else
{
if( pxMutexHolderTCB->uxBasePriority < pxCurrentTCB->uxPriority )
{
/* ... */
xReturn = pdTRUE;
}if (pxMutexHolderTCB->uxBasePriority < pxCurrentTCB->uxPriority) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}else { ... }
}if (pxMutexHolder != NULL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
return xReturn;
}{ ... }
/* ... */#endif
#if ( configUSE_MUTEXES == 1 )
BaseType_t xTaskPriorityDisinherit( TaskHandle_t const pxMutexHolder )
{
TCB_t * const pxTCB = pxMutexHolder;
BaseType_t xReturn = pdFALSE;
if( pxMutexHolder != NULL )
{
/* ... */
configASSERT( pxTCB == pxCurrentTCB );
configASSERT( pxTCB->uxMutexesHeld );
( pxTCB->uxMutexesHeld )--;
/* ... */
if( pxTCB->uxPriority != pxTCB->uxBasePriority )
{
if( pxTCB->uxMutexesHeld == ( UBaseType_t ) 0 )
{
/* ... */
if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 )
{
taskRESET_READY_PRIORITY( pxTCB->uxPriority );
}if (uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
/* ... */
traceTASK_PRIORITY_DISINHERIT( pxTCB, pxTCB->uxBasePriority );
pxTCB->uxPriority = pxTCB->uxBasePriority;
/* ... */
listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxTCB->uxPriority );
prvAddTaskToReadyList( pxTCB );
/* ... */
xReturn = pdTRUE;
}if (pxTCB->uxMutexesHeld == ( UBaseType_t ) 0) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (pxTCB->uxPriority != pxTCB->uxBasePriority) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (pxMutexHolder != NULL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
return xReturn;
}{ ... }
/* ... */#endif
#if ( configUSE_MUTEXES == 1 )
void vTaskPriorityDisinheritAfterTimeout( TaskHandle_t const pxMutexHolder, UBaseType_t uxHighestPriorityWaitingTask )
{
TCB_t * const pxTCB = pxMutexHolder;
UBaseType_t uxPriorityUsedOnEntry, uxPriorityToUse;
const UBaseType_t uxOnlyOneMutexHeld = ( UBaseType_t ) 1;
if( pxMutexHolder != NULL )
{
/* ... */
configASSERT( pxTCB->uxMutexesHeld );
/* ... */
if( pxTCB->uxBasePriority < uxHighestPriorityWaitingTask )
{
uxPriorityToUse = uxHighestPriorityWaitingTask;
}if (pxTCB->uxBasePriority < uxHighestPriorityWaitingTask) { ... }
else
{
uxPriorityToUse = pxTCB->uxBasePriority;
}else { ... }
if( pxTCB->uxPriority != uxPriorityToUse )
{
/* ... */
if( pxTCB->uxMutexesHeld == uxOnlyOneMutexHeld )
{
/* ... */
configASSERT( pxTCB != pxCurrentTCB );
/* ... */
traceTASK_PRIORITY_DISINHERIT( pxTCB, pxTCB->uxBasePriority );
uxPriorityUsedOnEntry = pxTCB->uxPriority;
pxTCB->uxPriority = uxPriorityToUse;
/* ... */
if( ( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL )
{
listSET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ), ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) uxPriorityToUse );
}if (( listGET_LIST_ITEM_VALUE( &( pxTCB->xEventListItem ) ) & taskEVENT_LIST_ITEM_VALUE_IN_USE ) == 0UL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
/* ... */
if( listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE )
{
if( uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0 )
{
/* ... */
portRESET_READY_PRIORITY( pxTCB->uxPriority, uxTopReadyPriority );
}if (uxListRemove( &( pxTCB->xStateListItem ) ) == ( UBaseType_t ) 0) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
prvAddTaskToReadyList( pxTCB );
}if (listIS_CONTAINED_WITHIN( &( pxReadyTasksLists[ uxPriorityUsedOnEntry ] ), &( pxTCB->xStateListItem ) ) != pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (pxTCB->uxMutexesHeld == uxOnlyOneMutexHeld) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (pxTCB->uxPriority != uxPriorityToUse) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (pxMutexHolder != NULL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}{ ... }
/* ... */#endif
#if ( portCRITICAL_NESTING_IN_TCB == 1 )
void vTaskEnterCritical( void )
{
portDISABLE_INTERRUPTS();
if( xSchedulerRunning != pdFALSE )
{
( pxCurrentTCB->uxCriticalNesting )++;
/* ... */
if( pxCurrentTCB->uxCriticalNesting == 1 )
{
portASSERT_IF_IN_ISR();
}if (pxCurrentTCB->uxCriticalNesting == 1) { ... }
}if (xSchedulerRunning != pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}vTaskEnterCritical (void) { ... }
/* ... */
#endif
#if ( portCRITICAL_NESTING_IN_TCB == 1 )
void vTaskExitCritical( void )
{
if( xSchedulerRunning != pdFALSE )
{
if( pxCurrentTCB->uxCriticalNesting > 0U )
{
( pxCurrentTCB->uxCriticalNesting )--;
if( pxCurrentTCB->uxCriticalNesting == 0U )
{
portENABLE_INTERRUPTS();
}if (pxCurrentTCB->uxCriticalNesting == 0U) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (pxCurrentTCB->uxCriticalNesting > 0U) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (xSchedulerRunning != pdFALSE) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}vTaskExitCritical (void) { ... }
/* ... */
#endif
#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) )
static char *prvWriteNameToBuffer( char *pcBuffer, const char *pcTaskName )
{
size_t x;
strcpy( pcBuffer, pcTaskName );
/* ... */
for( x = strlen( pcBuffer ); x < ( size_t ) ( configMAX_TASK_NAME_LEN - 1 ); x++ )
{
pcBuffer[ x ] = ' ';
}for (x = strlen( pcBuffer ); x < ( size_t ) ( configMAX_TASK_NAME_LEN - 1 ); x++) { ... }
pcBuffer[ x ] = ( char ) 0x00;
return &( pcBuffer[ x ] );
}prvWriteNameToBuffer (char *pcBuffer, const char *pcTaskName) { ... }
/* ... */
#endif
#if ( ( configUSE_TRACE_FACILITY == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )
void vTaskList( char * pcWriteBuffer )
{
TaskStatus_t *pxTaskStatusArray;
UBaseType_t uxArraySize, x;
char cStatus;
/* ... */
*pcWriteBuffer = ( char ) 0x00;
/* ... */
uxArraySize = uxCurrentNumberOfTasks;
/* ... */
pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) );
if( pxTaskStatusArray != NULL )
{
uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, NULL );
for( x = 0; x < uxArraySize; x++ )
{
switch( pxTaskStatusArray[ x ].eCurrentState )
{
case eRunning: cStatus = tskRUNNING_CHAR;
break;
case eRunning:
case eReady: cStatus = tskREADY_CHAR;
break;
case eReady:
case eBlocked: cStatus = tskBLOCKED_CHAR;
break;
case eBlocked:
case eSuspended: cStatus = tskSUSPENDED_CHAR;
break;
case eSuspended:
case eDeleted: cStatus = tskDELETED_CHAR;
break;
case eDeleted:
case eInvalid:
default:
/* ... */
cStatus = ( char ) 0x00;
break;default
}switch (pxTaskStatusArray[ x ].eCurrentState) { ... }
/* ... */
pcWriteBuffer = prvWriteNameToBuffer( pcWriteBuffer, pxTaskStatusArray[ x ].pcTaskName );
sprintf( pcWriteBuffer, "\t%c\t%u\t%u\t%u\r\n", cStatus, ( unsigned int ) pxTaskStatusArray[ x ].uxCurrentPriority, ( unsigned int ) pxTaskStatusArray[ x ].usStackHighWaterMark, ( unsigned int ) pxTaskStatusArray[ x ].xTaskNumber );
pcWriteBuffer += strlen( pcWriteBuffer );
}for (x = 0; x < uxArraySize; x++) { ... }
/* ... */
vPortFree( pxTaskStatusArray );
}if (pxTaskStatusArray != NULL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}vTaskList (char * pcWriteBuffer) { ... }
/* ... */
#endif
#if ( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( configUSE_STATS_FORMATTING_FUNCTIONS > 0 ) && ( configSUPPORT_DYNAMIC_ALLOCATION == 1 ) )
void vTaskGetRunTimeStats( char *pcWriteBuffer )
{
TaskStatus_t *pxTaskStatusArray;
UBaseType_t uxArraySize, x;
uint32_t ulTotalTime, ulStatsAsPercentage;
#if( configUSE_TRACE_FACILITY != 1 )
{
#error configUSE_TRACE_FACILITY must also be set to 1 in FreeRTOSConfig.h to use vTaskGetRunTimeStats().
...}/* ... */
#endif
/* ... */
*pcWriteBuffer = ( char ) 0x00;
/* ... */
uxArraySize = uxCurrentNumberOfTasks;
/* ... */
pxTaskStatusArray = pvPortMalloc( uxCurrentNumberOfTasks * sizeof( TaskStatus_t ) );
if( pxTaskStatusArray != NULL )
{
uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, &ulTotalTime );
ulTotalTime /= 100UL;
if( ulTotalTime > 0UL )
{
for( x = 0; x < uxArraySize; x++ )
{
/* ... */
ulStatsAsPercentage = pxTaskStatusArray[ x ].ulRunTimeCounter / ulTotalTime;
/* ... */
pcWriteBuffer = prvWriteNameToBuffer( pcWriteBuffer, pxTaskStatusArray[ x ].pcTaskName );
if( ulStatsAsPercentage > 0UL )
{
#ifdef portLU_PRINTF_SPECIFIER_REQUIRED
{
sprintf( pcWriteBuffer, "\t%lu\t\t%lu%%\r\n", pxTaskStatusArray[ x ].ulRunTimeCounter, ulStatsAsPercentage );
}/* ... */
if (ulStatsAsPercentage > 0UL) { ... } #else
{
/* ... */
sprintf( pcWriteBuffer, "\t%u\t\t%u%%\r\n", ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter, ( unsigned int ) ulStatsAsPercentage );
...}/* ... */
#endif
}if (ulStatsAsPercentage > 0UL) { ... }
else
{
/* ... */
#ifdef portLU_PRINTF_SPECIFIER_REQUIRED
{
sprintf( pcWriteBuffer, "\t%lu\t\t<1%%\r\n", pxTaskStatusArray[ x ].ulRunTimeCounter );
}/* ... */
else { ... } #else
{
/* ... */
sprintf( pcWriteBuffer, "\t%u\t\t<1%%\r\n", ( unsigned int ) pxTaskStatusArray[ x ].ulRunTimeCounter );
...}/* ... */
#endif
}else { ... }
pcWriteBuffer += strlen( pcWriteBuffer );
}for (x = 0; x < uxArraySize; x++) { ... }
}if (ulTotalTime > 0UL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
/* ... */
vPortFree( pxTaskStatusArray );
}if (pxTaskStatusArray != NULL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}vTaskGetRunTimeStats (char *pcWriteBuffer) { ... }
/* ... */
#endif
TickType_t uxTaskResetEventItemValue( void )
{
TickType_t uxReturn;
uxReturn = listGET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ) );
/* ... */
listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xEventListItem ), ( ( TickType_t ) configMAX_PRIORITIES - ( TickType_t ) pxCurrentTCB->uxPriority ) );
return uxReturn;
}{ ... }
#if ( configUSE_MUTEXES == 1 )
TaskHandle_t pvTaskIncrementMutexHeldCount( void )
{
/* ... */
if( pxCurrentTCB != NULL )
{
( pxCurrentTCB->uxMutexesHeld )++;
}if (pxCurrentTCB != NULL) { ... }
return pxCurrentTCB;
}{ ... }
/* ... */#endif
#if( configUSE_TASK_NOTIFICATIONS == 1 )
uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait )
{
uint32_t ulReturn;
taskENTER_CRITICAL();
{
if( pxCurrentTCB->ulNotifiedValue == 0UL )
{
pxCurrentTCB->ucNotifyState = taskWAITING_NOTIFICATION;
if( xTicksToWait > ( TickType_t ) 0 )
{
prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE );
traceTASK_NOTIFY_TAKE_BLOCK();
/* ... */
portYIELD_WITHIN_API();
}if (xTicksToWait > ( TickType_t ) 0) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (pxCurrentTCB->ulNotifiedValue == 0UL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}
taskEXIT_CRITICAL();
taskENTER_CRITICAL();
{
traceTASK_NOTIFY_TAKE();
ulReturn = pxCurrentTCB->ulNotifiedValue;
if( ulReturn != 0UL )
{
if( xClearCountOnExit != pdFALSE )
{
pxCurrentTCB->ulNotifiedValue = 0UL;
}if (xClearCountOnExit != pdFALSE) { ... }
else
{
pxCurrentTCB->ulNotifiedValue = ulReturn - ( uint32_t ) 1;
}else { ... }
}if (ulReturn != 0UL) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
pxCurrentTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION;
...}
taskEXIT_CRITICAL();
return ulReturn;
}{ ... }
/* ... */#endif
#if( configUSE_TASK_NOTIFICATIONS == 1 )
BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait )
{
BaseType_t xReturn;
taskENTER_CRITICAL();
{
if( pxCurrentTCB->ucNotifyState != taskNOTIFICATION_RECEIVED )
{
/* ... */
pxCurrentTCB->ulNotifiedValue &= ~ulBitsToClearOnEntry;
pxCurrentTCB->ucNotifyState = taskWAITING_NOTIFICATION;
if( xTicksToWait > ( TickType_t ) 0 )
{
prvAddCurrentTaskToDelayedList( xTicksToWait, pdTRUE );
traceTASK_NOTIFY_WAIT_BLOCK();
/* ... */
portYIELD_WITHIN_API();
}if (xTicksToWait > ( TickType_t ) 0) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (pxCurrentTCB->ucNotifyState != taskNOTIFICATION_RECEIVED) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}
taskEXIT_CRITICAL();
taskENTER_CRITICAL();
{
traceTASK_NOTIFY_WAIT();
if( pulNotificationValue != NULL )
{
/* ... */
*pulNotificationValue = pxCurrentTCB->ulNotifiedValue;
}if (pulNotificationValue != NULL) { ... }
/* ... */
if( pxCurrentTCB->ucNotifyState != taskNOTIFICATION_RECEIVED )
{
xReturn = pdFALSE;
}if (pxCurrentTCB->ucNotifyState != taskNOTIFICATION_RECEIVED) { ... }
else
{
/* ... */
pxCurrentTCB->ulNotifiedValue &= ~ulBitsToClearOnExit;
xReturn = pdTRUE;
}else { ... }
pxCurrentTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION;
...}
taskEXIT_CRITICAL();
return xReturn;
}{ ... }
/* ... */#endif
#if( configUSE_TASK_NOTIFICATIONS == 1 )
BaseType_t xTaskGenericNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue )
{
TCB_t * pxTCB;
BaseType_t xReturn = pdPASS;
uint8_t ucOriginalNotifyState;
configASSERT( xTaskToNotify );
pxTCB = xTaskToNotify;
taskENTER_CRITICAL();
{
if( pulPreviousNotificationValue != NULL )
{
*pulPreviousNotificationValue = pxTCB->ulNotifiedValue;
}if (pulPreviousNotificationValue != NULL) { ... }
ucOriginalNotifyState = pxTCB->ucNotifyState;
pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED;
switch( eAction )
{
case eSetBits :
pxTCB->ulNotifiedValue |= ulValue;
break;
case eSetBits :
case eIncrement :
( pxTCB->ulNotifiedValue )++;
break;
case eIncrement :
case eSetValueWithOverwrite :
pxTCB->ulNotifiedValue = ulValue;
break;
case eSetValueWithOverwrite :
case eSetValueWithoutOverwrite :
if( ucOriginalNotifyState != taskNOTIFICATION_RECEIVED )
{
pxTCB->ulNotifiedValue = ulValue;
}if (ucOriginalNotifyState != taskNOTIFICATION_RECEIVED) { ... }
else
{
xReturn = pdFAIL;
}else { ... }
break;
case eSetValueWithoutOverwrite :
case eNoAction:
/* ... */
break;
case eNoAction:
default:
/* ... */
configASSERT( pxTCB->ulNotifiedValue == ~0UL );
break;default
}switch (eAction) { ... }
traceTASK_NOTIFY();
/* ... */
if( ucOriginalNotifyState == taskWAITING_NOTIFICATION )
{
( void ) uxListRemove( &( pxTCB->xStateListItem ) );
prvAddTaskToReadyList( pxTCB );
configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL );
#if( configUSE_TICKLESS_IDLE != 0 )
{
/* ... */
prvResetNextTaskUnblockTime();
...}/* ... */
#endif
if( pxTCB->uxPriority > pxCurrentTCB->uxPriority )
{
/* ... */
taskYIELD_IF_USING_PREEMPTION();
}if (pxTCB->uxPriority > pxCurrentTCB->uxPriority) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (ucOriginalNotifyState == taskWAITING_NOTIFICATION) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
...}
taskEXIT_CRITICAL();
return xReturn;
}{ ... }
/* ... */#endif
#if( configUSE_TASK_NOTIFICATIONS == 1 )
BaseType_t xTaskGenericNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, uint32_t *pulPreviousNotificationValue, BaseType_t *pxHigherPriorityTaskWoken )
{
TCB_t * pxTCB;
uint8_t ucOriginalNotifyState;
BaseType_t xReturn = pdPASS;
UBaseType_t uxSavedInterruptStatus;
configASSERT( xTaskToNotify );
/* ... */
portASSERT_IF_INTERRUPT_PRIORITY_INVALID();
pxTCB = xTaskToNotify;
uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR();
{
if( pulPreviousNotificationValue != NULL )
{
*pulPreviousNotificationValue = pxTCB->ulNotifiedValue;
}if (pulPreviousNotificationValue != NULL) { ... }
ucOriginalNotifyState = pxTCB->ucNotifyState;
pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED;
switch( eAction )
{
case eSetBits :
pxTCB->ulNotifiedValue |= ulValue;
break;
case eSetBits :
case eIncrement :
( pxTCB->ulNotifiedValue )++;
break;
case eIncrement :
case eSetValueWithOverwrite :
pxTCB->ulNotifiedValue = ulValue;
break;
case eSetValueWithOverwrite :
case eSetValueWithoutOverwrite :
if( ucOriginalNotifyState != taskNOTIFICATION_RECEIVED )
{
pxTCB->ulNotifiedValue = ulValue;
}if (ucOriginalNotifyState != taskNOTIFICATION_RECEIVED) { ... }
else
{
xReturn = pdFAIL;
}else { ... }
break;
case eSetValueWithoutOverwrite :
case eNoAction :
/* ... */
break;
case eNoAction :
default:
/* ... */
configASSERT( pxTCB->ulNotifiedValue == ~0UL );
break;default
}switch (eAction) { ... }
traceTASK_NOTIFY_FROM_ISR();
/* ... */
if( ucOriginalNotifyState == taskWAITING_NOTIFICATION )
{
configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL );
if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE )
{
( void ) uxListRemove( &( pxTCB->xStateListItem ) );
prvAddTaskToReadyList( pxTCB );
}if (uxSchedulerSuspended == ( UBaseType_t ) pdFALSE) { ... }
else
{
/* ... */
vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) );
}else { ... }
if( pxTCB->uxPriority > pxCurrentTCB->uxPriority )
{
/* ... */
if( pxHigherPriorityTaskWoken != NULL )
{
*pxHigherPriorityTaskWoken = pdTRUE;
}if (pxHigherPriorityTaskWoken != NULL) { ... }
/* ... */
xYieldPending = pdTRUE;
}if (pxTCB->uxPriority > pxCurrentTCB->uxPriority) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (ucOriginalNotifyState == taskWAITING_NOTIFICATION) { ... }
...}
portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );
return xReturn;
}{ ... }
/* ... */#endif
#if( configUSE_TASK_NOTIFICATIONS == 1 )
void vTaskNotifyGiveFromISR( TaskHandle_t xTaskToNotify, BaseType_t *pxHigherPriorityTaskWoken )
{
TCB_t * pxTCB;
uint8_t ucOriginalNotifyState;
UBaseType_t uxSavedInterruptStatus;
configASSERT( xTaskToNotify );
/* ... */
portASSERT_IF_INTERRUPT_PRIORITY_INVALID();
pxTCB = xTaskToNotify;
uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR();
{
ucOriginalNotifyState = pxTCB->ucNotifyState;
pxTCB->ucNotifyState = taskNOTIFICATION_RECEIVED;
/* ... */
( pxTCB->ulNotifiedValue )++;
traceTASK_NOTIFY_GIVE_FROM_ISR();
/* ... */
if( ucOriginalNotifyState == taskWAITING_NOTIFICATION )
{
configASSERT( listLIST_ITEM_CONTAINER( &( pxTCB->xEventListItem ) ) == NULL );
if( uxSchedulerSuspended == ( UBaseType_t ) pdFALSE )
{
( void ) uxListRemove( &( pxTCB->xStateListItem ) );
prvAddTaskToReadyList( pxTCB );
}if (uxSchedulerSuspended == ( UBaseType_t ) pdFALSE) { ... }
else
{
/* ... */
vListInsertEnd( &( xPendingReadyList ), &( pxTCB->xEventListItem ) );
}else { ... }
if( pxTCB->uxPriority > pxCurrentTCB->uxPriority )
{
/* ... */
if( pxHigherPriorityTaskWoken != NULL )
{
*pxHigherPriorityTaskWoken = pdTRUE;
}if (pxHigherPriorityTaskWoken != NULL) { ... }
/* ... */
xYieldPending = pdTRUE;
}if (pxTCB->uxPriority > pxCurrentTCB->uxPriority) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}if (ucOriginalNotifyState == taskWAITING_NOTIFICATION) { ... }
...}
portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );
}{ ... }
/* ... */#endif
#if( configUSE_TASK_NOTIFICATIONS == 1 )
BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask )
{
TCB_t *pxTCB;
BaseType_t xReturn;
/* ... */
pxTCB = prvGetTCBFromHandle( xTask );
taskENTER_CRITICAL();
{
if( pxTCB->ucNotifyState == taskNOTIFICATION_RECEIVED )
{
pxTCB->ucNotifyState = taskNOT_WAITING_NOTIFICATION;
xReturn = pdPASS;
}if (pxTCB->ucNotifyState == taskNOTIFICATION_RECEIVED) { ... }
else
{
xReturn = pdFAIL;
}else { ... }
...}
taskEXIT_CRITICAL();
return xReturn;
}{ ... }
/* ... */#endif
#if( configUSE_TASK_NOTIFICATIONS == 1 )
uint32_t ulTaskNotifyValueClear( TaskHandle_t xTask, uint32_t ulBitsToClear )
{
TCB_t *pxTCB;
uint32_t ulReturn;
/* ... */
pxTCB = prvGetTCBFromHandle( xTask );
taskENTER_CRITICAL();
{
/* ... */
ulReturn = pxCurrentTCB->ulNotifiedValue;
pxTCB->ulNotifiedValue &= ~ulBitsToClear;
...}
taskEXIT_CRITICAL();
return ulReturn;
}{ ... }
/* ... */#endif
#if( ( configGENERATE_RUN_TIME_STATS == 1 ) && ( INCLUDE_xTaskGetIdleTaskHandle == 1 ) )
uint32_t ulTaskGetIdleRunTimeCounter( void )
{
return xIdleTaskHandle->ulRunTimeCounter;
}ulTaskGetIdleRunTimeCounter (void) { ... }
/* ... */
#endif
static void prvAddCurrentTaskToDelayedList( TickType_t xTicksToWait, const BaseType_t xCanBlockIndefinitely )
{
TickType_t xTimeToWake;
const TickType_t xConstTickCount = xTickCount;
#if( INCLUDE_xTaskAbortDelay == 1 )
{
/* ... */
pxCurrentTCB->ucDelayAborted = pdFALSE;
...}/* ... */
#endif
/* ... */
if( uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0 )
{
/* ... */
portRESET_READY_PRIORITY( pxCurrentTCB->uxPriority, uxTopReadyPriority );
}if (uxListRemove( &( pxCurrentTCB->xStateListItem ) ) == ( UBaseType_t ) 0) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
#if ( INCLUDE_vTaskSuspend == 1 )
{
if( ( xTicksToWait == portMAX_DELAY ) && ( xCanBlockIndefinitely != pdFALSE ) )
{
/* ... */
vListInsertEnd( &xSuspendedTaskList, &( pxCurrentTCB->xStateListItem ) );
}if (( xTicksToWait == portMAX_DELAY ) && ( xCanBlockIndefinitely != pdFALSE )) { ... }
else
{
/* ... */
xTimeToWake = xConstTickCount + xTicksToWait;
listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake );
if( xTimeToWake < xConstTickCount )
{
/* ... */
vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) );
}if (xTimeToWake < xConstTickCount) { ... }
else
{
/* ... */
vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) );
/* ... */
if( xTimeToWake < xNextTaskUnblockTime )
{
xNextTaskUnblockTime = xTimeToWake;
}if (xTimeToWake < xNextTaskUnblockTime) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}else { ... }
}else { ... }
...}/* ... */
#else
{
/* ... */
xTimeToWake = xConstTickCount + xTicksToWait;
listSET_LIST_ITEM_VALUE( &( pxCurrentTCB->xStateListItem ), xTimeToWake );
if( xTimeToWake < xConstTickCount )
{
vListInsert( pxOverflowDelayedTaskList, &( pxCurrentTCB->xStateListItem ) );
}if (xTimeToWake < xConstTickCount) { ... }
else
{
vListInsert( pxDelayedTaskList, &( pxCurrentTCB->xStateListItem ) );
/* ... */
if( xTimeToWake < xNextTaskUnblockTime )
{
xNextTaskUnblockTime = xTimeToWake;
}if (xTimeToWake < xNextTaskUnblockTime) { ... }
else
{
mtCOVERAGE_TEST_MARKER();
}else { ... }
}else { ... }
( void ) xCanBlockIndefinitely;
...}/* ... */
#endif
}{ ... }
/* ... */
#ifdef FREERTOS_MODULE_TEST
#include "tasks_test_access_functions.h"
#endif
#if( configINCLUDE_FREERTOS_TASK_C_ADDITIONS_H == 1 )
#include "freertos_tasks_c_additions.h"
#ifdef FREERTOS_TASKS_C_ADDITIONS_INIT
static void freertos_tasks_c_additions_init( void )
{
FREERTOS_TASKS_C_ADDITIONS_INIT();
}freertos_tasks_c_additions_init (void) { ... }
/* ... */ #endif
/* ... */
#endif
File private functions.