Select one of the symbols to view example projects that use it.
 
Outline
...
...
...
...
#define TX_SOURCE_CODE
#include "tx_api.h"
#include "tx_initialize.h"
#include "tx_trace.h"
#include "tx_timer.h"
#include "tx_thread.h"
...
...
_tx_thread_system_resume(TX_THREAD *)
Files
loading...
CodeScopeSTM32 Libraries and Samplesthreadxcommon/src/tx_thread_system_resume.c
 
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
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
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
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
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
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
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/**************************************************************************/ /* */ /* Copyright (c) Microsoft Corporation. All rights reserved. */ /* */ /* This software is licensed under the Microsoft Software License */ /* Terms for Microsoft Azure RTOS. Full text of the license can be */ /* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA */ /* and in the root directory of this software. */ /* */... /**************************************************************************/ ... /**************************************************************************/ /**************************************************************************/ /** */ /** ThreadX Component */ /** */ /** Thread */ /** */... /**************************************************************************/ /**************************************************************************/ #define TX_SOURCE_CODE /* Include necessary system files. */ #include "tx_api.h" #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO #include "tx_initialize.h" #endif #include "tx_trace.h" #include "tx_timer.h" #include "tx_thread.h" ... /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _tx_thread_system_resume PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* William E. Lamie, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function places the specified thread on the list of ready */ /* threads at the thread's specific priority. */ /* */ /* INPUT */ /* */ /* thread_ptr Pointer to thread to resume */ /* */ /* OUTPUT */ /* */ /* None */ /* */ /* CALLS */ /* */ /* _tx_thread_system_return Return to the system */ /* _tx_thread_system_ni_resume Noninterruptable thread resume*/ /* _tx_timer_system_deactivate Timer deactivate */ /* */ /* CALLED BY */ /* */ /* _tx_thread_create Thread create function */ /* _tx_thread_priority_change Thread priority change */ /* _tx_thread_resume Application resume service */ /* _tx_thread_timeout Thread timeout */ /* _tx_thread_wait_abort Thread wait abort */ /* Other ThreadX Components */ /* */ /* RELEASE HISTORY */ /* */ /* DATE NAME DESCRIPTION */ /* */ /* 05-19-2020 William E. Lamie Initial Version 6.0 */ /* 09-30-2020 Yuxin Zhou Modified comment(s), */ /* resulting in version 6.1 */ /* */... /**************************************************************************/ VOID _tx_thread_system_resume(TX_THREAD *thread_ptr) #ifndef TX_NOT_INTERRUPTABLE { TX_INTERRUPT_SAVE_AREA UINT priority; ULONG priority_bit; TX_THREAD *head_ptr; TX_THREAD *tail_ptr; TX_THREAD *execute_ptr; TX_THREAD *current_thread; ULONG combined_flags; #ifdef TX_ENABLE_EVENT_TRACE TX_TRACE_BUFFER_ENTRY *entry_ptr; ULONG time_stamp = ((ULONG) 0);/* ... */ #endif #if TX_MAX_PRIORITIES > 32 UINT map_index; #endif #ifdef TX_ENABLE_STACK_CHECKING /* Check this thread's stack. */ TX_THREAD_STACK_CHECK(thread_ptr)/* ... */ #endif /* Lockout interrupts while the thread is being resumed. */ TX_DISABLE #ifndef TX_NO_TIMER /* Deactivate the timeout timer if necessary. */ if (thread_ptr -> tx_thread_timer.tx_timer_internal_list_head != TX_NULL) { /* Deactivate the thread's timeout timer. */ _tx_timer_system_deactivate(&(thread_ptr -> tx_thread_timer)); }if (thread_ptr -> tx_thread_timer.tx_timer_internal_list_head != TX_NULL) { ... } else { /* Clear the remaining time to ensure timer doesn't get activated. */ thread_ptr -> tx_thread_timer.tx_timer_internal_remaining_ticks = ((ULONG) 0); }else { ... } /* ... */#endif #ifdef TX_ENABLE_EVENT_TRACE /* If trace is enabled, save the current event pointer. */ entry_ptr = _tx_trace_buffer_current_ptr;/* ... */ #endif /* Log the thread status change. */ TX_TRACE_IN_LINE_INSERT(TX_TRACE_THREAD_RESUME, thread_ptr, thread_ptr -> tx_thread_state, TX_POINTER_TO_ULONG_CONVERT(&execute_ptr), TX_POINTER_TO_ULONG_CONVERT(_tx_thread_execute_ptr), TX_TRACE_INTERNAL_EVENTS) #ifdef TX_ENABLE_EVENT_TRACE /* Save the time stamp for later comparison to verify that the event hasn't been overwritten by the time we have computed the next thread to execute. *//* ... */ if (entry_ptr != TX_NULL) { /* Save time stamp. */ time_stamp = entry_ptr -> tx_trace_buffer_entry_time_stamp; }if (entry_ptr != TX_NULL) { ... } /* ... */#endif /* Decrease the preempt disabled count. */ _tx_thread_preempt_disable--; /* Determine if the thread is in the process of suspending. If so, the thread control block is already on the linked list so nothing needs to be done. *//* ... */ if (thread_ptr -> tx_thread_suspending == TX_FALSE) { /* Thread is not in the process of suspending. Now check to make sure the thread has not already been resumed. *//* ... */ if (thread_ptr -> tx_thread_state != TX_READY) { /* No, now check to see if the delayed suspension flag is set. */ if (thread_ptr -> tx_thread_delayed_suspend == TX_FALSE) { /* Resume the thread! */ /* Make this thread ready. */ /* Change the state to ready. */ thread_ptr -> tx_thread_state = TX_READY; /* Pickup priority of thread. */ priority = thread_ptr -> tx_thread_priority; /* Thread state change. */ TX_THREAD_STATE_CHANGE(thread_ptr, TX_READY) /* Log the thread status change. */ TX_EL_THREAD_STATUS_CHANGE_INSERT(thread_ptr, TX_READY) #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO /* Increment the total number of thread resumptions. */ _tx_thread_performance_resume_count++; /* Increment this thread's resume count. */ thread_ptr -> tx_thread_performance_resume_count++;/* ... */ #endif /* Determine if there are other threads at this priority that are ready. *//* ... */ head_ptr = _tx_thread_priority_list[priority]; if (head_ptr == TX_NULL) { /* First thread at this priority ready. Add to the front of the list. */ _tx_thread_priority_list[priority] = thread_ptr; thread_ptr -> tx_thread_ready_next = thread_ptr; thread_ptr -> tx_thread_ready_previous = thread_ptr; #if TX_MAX_PRIORITIES > 32 /* Calculate the index into the bit map array. */ map_index = priority/((UINT) 32); /* Set the active bit to remember that the priority map has something set. */ TX_DIV32_BIT_SET(priority, priority_bit) _tx_thread_priority_map_active = _tx_thread_priority_map_active | priority_bit;/* ... */ #endif /* Or in the thread's priority bit. */ TX_MOD32_BIT_SET(priority, priority_bit) _tx_thread_priority_maps[MAP_INDEX] = _tx_thread_priority_maps[MAP_INDEX] | priority_bit; /* Determine if this newly ready thread is the highest priority. */ if (priority < _tx_thread_highest_priority) { /* A new highest priority thread is present. */ /* Update the highest priority variable. */ _tx_thread_highest_priority = priority; /* Pickup the execute pointer. Since it is going to be referenced multiple times, it is placed in a local variable. *//* ... */ execute_ptr = _tx_thread_execute_ptr; /* Determine if no thread is currently executing. */ if (execute_ptr == TX_NULL) { /* Simply setup the execute pointer. */ _tx_thread_execute_ptr = thread_ptr; }if (execute_ptr == TX_NULL) { ... } else { /* Another thread has been scheduled for execution. */ /* Check to see if this is a higher priority thread and determine if preemption is allowed. */ if (priority < execute_ptr -> tx_thread_preempt_threshold) { #ifndef TX_DISABLE_PREEMPTION_THRESHOLD /* Determine if the preempted thread had preemption-threshold set. */ if (execute_ptr -> tx_thread_preempt_threshold != execute_ptr -> tx_thread_priority) { #if TX_MAX_PRIORITIES > 32 /* Calculate the index into the bit map array. */ map_index = (execute_ptr -> tx_thread_priority)/((UINT) 32); /* Set the active bit to remember that the preempt map has something set. */ TX_DIV32_BIT_SET(execute_ptr -> tx_thread_priority, priority_bit) _tx_thread_preempted_map_active = _tx_thread_preempted_map_active | priority_bit;/* ... */ #endif /* Remember that this thread was preempted by a thread above the thread's threshold. */ TX_MOD32_BIT_SET(execute_ptr -> tx_thread_priority, priority_bit) _tx_thread_preempted_maps[MAP_INDEX] = _tx_thread_preempted_maps[MAP_INDEX] | priority_bit; }if (execute_ptr -> tx_thread_preempt_threshold != execute_ptr -> tx_thread_priority) { ... } /* ... */#endif #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO /* Determine if the caller is an interrupt or from a thread. */ if (TX_THREAD_GET_SYSTEM_STATE() == ((ULONG) 0)) { /* Caller is a thread, so this is a solicited preemption. */ _tx_thread_performance_solicited_preemption_count++; /* Increment the thread's solicited preemption counter. */ execute_ptr -> tx_thread_performance_solicited_preemption_count++; }if (TX_THREAD_GET_SYSTEM_STATE() == ((ULONG) 0)) { ... } else { if (TX_THREAD_GET_SYSTEM_STATE() < TX_INITIALIZE_IN_PROGRESS) { /* Caller is an interrupt, so this is an interrupt preemption. */ _tx_thread_performance_interrupt_preemption_count++; /* Increment the thread's interrupt preemption counter. */ execute_ptr -> tx_thread_performance_interrupt_preemption_count++; }if (TX_THREAD_GET_SYSTEM_STATE() < TX_INITIALIZE_IN_PROGRESS) { ... } }else { ... } /* Remember the thread that preempted this thread. */ execute_ptr -> tx_thread_performance_last_preempting_thread = thread_ptr; /* ... */ #endif /* Yes, modify the execute thread pointer. */ _tx_thread_execute_ptr = thread_ptr; #ifndef TX_MISRA_ENABLE /* If MISRA is not-enabled, insert a preemption and return in-line for performance. */ #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO /* Is the execute pointer different? */ if (_tx_thread_performance_execute_log[_tx_thread_performance__execute_log_index] != _tx_thread_execute_ptr) { /* Move to next entry. */ _tx_thread_performance__execute_log_index++; /* Check for wrap condition. */ if (_tx_thread_performance__execute_log_index >= TX_THREAD_EXECUTE_LOG_SIZE) { /* Set the index to the beginning. */ _tx_thread_performance__execute_log_index = ((UINT) 0); }if (_tx_thread_performance__execute_log_index >= TX_THREAD_EXECUTE_LOG_SIZE) { ... } /* Log the new execute pointer. */ _tx_thread_performance_execute_log[_tx_thread_performance__execute_log_index] = _tx_thread_execute_ptr; }if (_tx_thread_performance_execute_log[_tx_thread_performance__execute_log_index] != _tx_thread_execute_ptr) { ... } /* ... */#endif #ifdef TX_ENABLE_EVENT_TRACE /* Check that the event time stamp is unchanged. A different timestamp means that a later event wrote over the thread resume event. In that case, do nothing here. *//* ... */ if (entry_ptr != TX_NULL) { /* Is the timestamp the same? */ if (time_stamp == entry_ptr -> tx_trace_buffer_entry_time_stamp) { /* Timestamp is the same, set the "next thread pointer" to NULL. This can be used by the trace analysis tool to show idle system conditions. *//* ... */ entry_ptr -> tx_trace_buffer_entry_information_field_4 = TX_POINTER_TO_ULONG_CONVERT(_tx_thread_execute_ptr); }if (time_stamp == entry_ptr -> tx_trace_buffer_entry_time_stamp) { ... } }if (entry_ptr != TX_NULL) { ... } /* ... */#endif /* Restore interrupts. */ TX_RESTORE #ifdef TX_ENABLE_STACK_CHECKING /* Pickup the next execute pointer. */ thread_ptr = _tx_thread_execute_ptr; /* Check this thread's stack. */ TX_THREAD_STACK_CHECK(thread_ptr)/* ... */ #endif /* Now determine if preemption should take place. This is only possible if the current thread pointer is not the same as the execute thread pointer AND the system state and preempt disable flags are clear. *//* ... */ TX_THREAD_SYSTEM_RETURN_CHECK(combined_flags) if (combined_flags == ((ULONG) 0)) { #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO /* There is another thread ready to run and will be scheduled upon return. */ _tx_thread_performance_non_idle_return_count++;/* ... */ #endif /* Preemption is needed - return to the system! */ _tx_thread_system_return(); }if (combined_flags == ((ULONG) 0)) { ... } /* Return in-line when MISRA is not enabled. */ return;/* ... */ #endif }if (priority < execute_ptr -> tx_thread_preempt_threshold) { ... } }else { ... } }if (priority < _tx_thread_highest_priority) { ... } }if (head_ptr == TX_NULL) { ... } else { /* No, there are other threads at this priority already ready. */ /* Just add this thread to the priority list. */ tail_ptr = head_ptr -> tx_thread_ready_previous; tail_ptr -> tx_thread_ready_next = thread_ptr; head_ptr -> tx_thread_ready_previous = thread_ptr; thread_ptr -> tx_thread_ready_previous = tail_ptr; thread_ptr -> tx_thread_ready_next = head_ptr; }else { ... } }if (thread_ptr -> tx_thread_delayed_suspend == TX_FALSE) { ... } /* Else, delayed suspend flag was set. */ else { /* Clear the delayed suspend flag and change the state. */ thread_ptr -> tx_thread_delayed_suspend = TX_FALSE; thread_ptr -> tx_thread_state = TX_SUSPENDED; }else { ... } }if (thread_ptr -> tx_thread_state != TX_READY) { ... } }if (thread_ptr -> tx_thread_suspending == TX_FALSE) { ... } else { /* A resumption occurred in the middle of a previous thread suspension. */ /* Make sure the type of suspension under way is not a terminate or thread completion. In either of these cases, do not void the interrupted suspension processing. *//* ... */ if (thread_ptr -> tx_thread_state != TX_COMPLETED) { /* Make sure the thread isn't terminated. */ if (thread_ptr -> tx_thread_state != TX_TERMINATED) { /* No, now check to see if the delayed suspension flag is set. */ if (thread_ptr -> tx_thread_delayed_suspend == TX_FALSE) { /* Clear the suspending flag. */ thread_ptr -> tx_thread_suspending = TX_FALSE; /* Restore the state to ready. */ thread_ptr -> tx_thread_state = TX_READY; /* Thread state change. */ TX_THREAD_STATE_CHANGE(thread_ptr, TX_READY) /* Log the thread status change. */ TX_EL_THREAD_STATUS_CHANGE_INSERT(thread_ptr, TX_READY) }if (thread_ptr -> tx_thread_delayed_suspend == TX_FALSE) { ... } else { /* Clear the delayed suspend flag and change the state. */ thread_ptr -> tx_thread_delayed_suspend = TX_FALSE; thread_ptr -> tx_thread_state = TX_SUSPENDED; }else { ... } #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO /* Increment the total number of thread resumptions. */ _tx_thread_performance_resume_count++; /* Increment this thread's resume count. */ thread_ptr -> tx_thread_performance_resume_count++;/* ... */ #endif }if (thread_ptr -> tx_thread_state != TX_TERMINATED) { ... } }if (thread_ptr -> tx_thread_state != TX_COMPLETED) { ... } }else { ... } #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO /* Is the execute pointer different? */ if (_tx_thread_performance_execute_log[_tx_thread_performance__execute_log_index] != _tx_thread_execute_ptr) { /* Move to next entry. */ _tx_thread_performance__execute_log_index++; /* Check for wrap condition. */ if (_tx_thread_performance__execute_log_index >= TX_THREAD_EXECUTE_LOG_SIZE) { /* Set the index to the beginning. */ _tx_thread_performance__execute_log_index = ((UINT) 0); }if (_tx_thread_performance__execute_log_index >= TX_THREAD_EXECUTE_LOG_SIZE) { ... } /* Log the new execute pointer. */ _tx_thread_performance_execute_log[_tx_thread_performance__execute_log_index] = _tx_thread_execute_ptr; }if (_tx_thread_performance_execute_log[_tx_thread_performance__execute_log_index] != _tx_thread_execute_ptr) { ... } /* ... */#endif #ifdef TX_ENABLE_EVENT_TRACE /* Check that the event time stamp is unchanged. A different timestamp means that a later event wrote over the thread resume event. In that case, do nothing here. *//* ... */ if (entry_ptr != TX_NULL) { /* Is the timestamp the same? */ if (time_stamp == entry_ptr -> tx_trace_buffer_entry_time_stamp) { /* Timestamp is the same, set the "next thread pointer" to NULL. This can be used by the trace analysis tool to show idle system conditions. *//* ... */ #ifdef TX_MISRA_ENABLE entry_ptr -> tx_trace_buffer_entry_info_4 = TX_POINTER_TO_ULONG_CONVERT(_tx_thread_execute_ptr); #else entry_ptr -> tx_trace_buffer_entry_information_field_4 = TX_POINTER_TO_ULONG_CONVERT(_tx_thread_execute_ptr); #endif }if (time_stamp == entry_ptr -> tx_trace_buffer_entry_time_stamp) { ... } }if (entry_ptr != TX_NULL) { ... } /* ... */#endif /* Pickup thread pointer. */ TX_THREAD_GET_CURRENT(current_thread) /* Restore interrupts. */ TX_RESTORE /* Determine if a preemption condition is present. */ if (current_thread != _tx_thread_execute_ptr) { #ifdef TX_ENABLE_STACK_CHECKING /* Pickup the next execute pointer. */ thread_ptr = _tx_thread_execute_ptr; /* Check this thread's stack. */ TX_THREAD_STACK_CHECK(thread_ptr)/* ... */ #endif /* Now determine if preemption should take place. This is only possible if the current thread pointer is not the same as the execute thread pointer AND the system state and preempt disable flags are clear. *//* ... */ TX_THREAD_SYSTEM_RETURN_CHECK(combined_flags) if (combined_flags == ((ULONG) 0)) { #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO /* There is another thread ready to run and will be scheduled upon return. */ _tx_thread_performance_non_idle_return_count++;/* ... */ #endif /* Preemption is needed - return to the system! */ _tx_thread_system_return(); }if (combined_flags == ((ULONG) 0)) { ... } }if (current_thread != _tx_thread_execute_ptr) { ... } ...}/* ... */ #else { TX_INTERRUPT_SAVE_AREA #ifdef TX_ENABLE_EVENT_TRACE UINT temp_state; #endif UINT state; /* Lockout interrupts while the thread is being resumed. */ TX_DISABLE /* Decrease the preempt disabled count. */ _tx_thread_preempt_disable--; /* Determine if the thread is in the process of suspending. If so, the thread control block is already on the linked list so nothing needs to be done. *//* ... */ if (thread_ptr -> tx_thread_suspending == TX_FALSE) { /* Call the non-interruptable thread system resume function. */ _tx_thread_system_ni_resume(thread_ptr); }if (thread_ptr -> tx_thread_suspending == TX_FALSE) { ... } else { /* A resumption occurred in the middle of a previous thread suspension. */ /* Pickup the current thread state. */ state = thread_ptr -> tx_thread_state; #ifdef TX_ENABLE_EVENT_TRACE /* Move the state into a different variable for MISRA compliance. */ temp_state = state;/* ... */ #endif /* Log the thread status change. */ TX_TRACE_IN_LINE_INSERT(TX_TRACE_THREAD_RESUME, thread_ptr, ((ULONG) state), TX_POINTER_TO_ULONG_CONVERT(&temp_state), TX_POINTER_TO_ULONG_CONVERT(_tx_thread_execute_ptr), TX_TRACE_INTERNAL_EVENTS) /* Make sure the type of suspension under way is not a terminate or thread completion. In either of these cases, do not void the interrupted suspension processing. *//* ... */ if (state != TX_COMPLETED) { /* Check for terminated thread. */ if (state != TX_TERMINATED) { /* Clear the suspending flag. */ thread_ptr -> tx_thread_suspending = TX_FALSE; /* Restore the state to ready. */ thread_ptr -> tx_thread_state = TX_READY; /* Thread state change. */ TX_THREAD_STATE_CHANGE(thread_ptr, TX_READY) /* Log the thread status change. */ TX_EL_THREAD_STATUS_CHANGE_INSERT(thread_ptr, TX_READY) #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO /* Increment the total number of thread resumptions. */ _tx_thread_performance_resume_count++; /* Increment this thread's resume count. */ thread_ptr -> tx_thread_performance_resume_count++;/* ... */ #endif }if (state != TX_TERMINATED) { ... } }if (state != TX_COMPLETED) { ... } }else { ... } /* Restore interrupts. */ TX_RESTORE ...} /* Define the non-interruptable version of thread resume. It is assumed at this point that all interrupts are disabled and will remain so during this function. *//* ... */ VOID _tx_thread_system_ni_resume(TX_THREAD *thread_ptr) { UINT priority; ULONG priority_bit; TX_THREAD *head_ptr; TX_THREAD *tail_ptr; TX_THREAD *execute_ptr; TX_THREAD *current_thread; ULONG combined_flags; #ifdef TX_ENABLE_EVENT_TRACE TX_TRACE_BUFFER_ENTRY *entry_ptr; ULONG time_stamp = ((ULONG) 0);/* ... */ #endif #if TX_MAX_PRIORITIES > 32 UINT map_index; #endif #ifdef TX_ENABLE_EVENT_TRACE /* If trace is enabled, save the current event pointer. */ entry_ptr = _tx_trace_buffer_current_ptr;/* ... */ #endif /* Log the thread status change. */ TX_TRACE_IN_LINE_INSERT(TX_TRACE_THREAD_RESUME, thread_ptr, ((ULONG) thread_ptr -> tx_thread_state), TX_POINTER_TO_ULONG_CONVERT(&execute_ptr), TX_POINTER_TO_ULONG_CONVERT(_tx_thread_execute_ptr), TX_TRACE_INTERNAL_EVENTS) #ifdef TX_ENABLE_EVENT_TRACE /* Save the time stamp for later comparison to verify that the event hasn't been overwritten by the time we have computed the next thread to execute. *//* ... */ if (entry_ptr != TX_NULL) { /* Save time stamp. */ time_stamp = entry_ptr -> tx_trace_buffer_entry_time_stamp; }if (entry_ptr != TX_NULL) { ... } /* ... */#endif #ifndef TX_NO_TIMER /* Deactivate the timeout timer if necessary. */ if (thread_ptr -> tx_thread_timer.tx_timer_internal_list_head != TX_NULL) { /* Deactivate the thread's timeout timer. */ _tx_timer_system_deactivate(&(thread_ptr -> tx_thread_timer)); }if (thread_ptr -> tx_thread_timer.tx_timer_internal_list_head != TX_NULL) { ... } /* ... */#endif #ifdef TX_ENABLE_STACK_CHECKING /* Check this thread's stack. */ TX_THREAD_STACK_CHECK(thread_ptr)/* ... */ #endif /* Thread is not in the process of suspending. Now check to make sure the thread has not already been resumed. *//* ... */ if (thread_ptr -> tx_thread_state != TX_READY) { /* No, now check to see if the delayed suspension flag is set. */ if (thread_ptr -> tx_thread_delayed_suspend == TX_FALSE) { /* Resume the thread! */ /* Make this thread ready. */ /* Change the state to ready. */ thread_ptr -> tx_thread_state = TX_READY; /* Thread state change. */ TX_THREAD_STATE_CHANGE(thread_ptr, TX_READY) /* Log the thread status change. */ TX_EL_THREAD_STATUS_CHANGE_INSERT(thread_ptr, TX_READY) /* Pickup priority of thread. */ priority = thread_ptr -> tx_thread_priority; #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO /* Increment the total number of thread resumptions. */ _tx_thread_performance_resume_count++; /* Increment this thread's resume count. */ thread_ptr -> tx_thread_performance_resume_count++;/* ... */ #endif /* Determine if there are other threads at this priority that are ready. *//* ... */ head_ptr = _tx_thread_priority_list[priority]; if (head_ptr == TX_NULL) { /* First thread at this priority ready. Add to the front of the list. */ _tx_thread_priority_list[priority] = thread_ptr; thread_ptr -> tx_thread_ready_next = thread_ptr; thread_ptr -> tx_thread_ready_previous = thread_ptr; #if TX_MAX_PRIORITIES > 32 /* Calculate the index into the bit map array. */ map_index = priority/((UINT) 32); /* Set the active bit to remember that the priority map has something set. */ TX_DIV32_BIT_SET(priority, priority_bit) _tx_thread_priority_map_active = _tx_thread_priority_map_active | priority_bit;/* ... */ #endif /* Or in the thread's priority bit. */ TX_MOD32_BIT_SET(priority, priority_bit) _tx_thread_priority_maps[MAP_INDEX] = _tx_thread_priority_maps[MAP_INDEX] | priority_bit; /* Determine if this newly ready thread is the highest priority. */ if (priority < _tx_thread_highest_priority) { /* A new highest priority thread is present. */ /* Update the highest priority variable. */ _tx_thread_highest_priority = priority; /* Pickup the execute pointer. Since it is going to be referenced multiple times, it is placed in a local variable. *//* ... */ execute_ptr = _tx_thread_execute_ptr; /* Determine if no thread is currently executing. */ if (execute_ptr == TX_NULL) { /* Simply setup the execute pointer. */ _tx_thread_execute_ptr = thread_ptr; }if (execute_ptr == TX_NULL) { ... } else { /* Check to see if this is a higher priority thread and determine if preemption is allowed. */ if (priority < execute_ptr -> tx_thread_preempt_threshold) { #ifndef TX_DISABLE_PREEMPTION_THRESHOLD /* Determine if the preempted thread had preemption-threshold set. */ if (execute_ptr -> tx_thread_preempt_threshold != execute_ptr -> tx_thread_priority) { #if TX_MAX_PRIORITIES > 32 /* Calculate the index into the bit map array. */ map_index = (execute_ptr -> tx_thread_priority)/((UINT) 32); /* Set the active bit to remember that the preempt map has something set. */ TX_DIV32_BIT_SET(execute_ptr -> tx_thread_priority, priority_bit) _tx_thread_preempted_map_active = _tx_thread_preempted_map_active | priority_bit;/* ... */ #endif /* Remember that this thread was preempted by a thread above the thread's threshold. */ TX_MOD32_BIT_SET(execute_ptr -> tx_thread_priority, priority_bit) _tx_thread_preempted_maps[MAP_INDEX] = _tx_thread_preempted_maps[MAP_INDEX] | priority_bit; }if (execute_ptr -> tx_thread_preempt_threshold != execute_ptr -> tx_thread_priority) { ... } /* ... */#endif #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO /* Determine if the caller is an interrupt or from a thread. */ if (TX_THREAD_GET_SYSTEM_STATE() == ((ULONG) 0)) { /* Caller is a thread, so this is a solicited preemption. */ _tx_thread_performance_solicited_preemption_count++; /* Increment the thread's solicited preemption counter. */ execute_ptr -> tx_thread_performance_solicited_preemption_count++; }if (TX_THREAD_GET_SYSTEM_STATE() == ((ULONG) 0)) { ... } else { if (TX_THREAD_GET_SYSTEM_STATE() < TX_INITIALIZE_IN_PROGRESS) { /* Caller is an interrupt, so this is an interrupt preemption. */ _tx_thread_performance_interrupt_preemption_count++; /* Increment the thread's interrupt preemption counter. */ execute_ptr -> tx_thread_performance_interrupt_preemption_count++; }if (TX_THREAD_GET_SYSTEM_STATE() < TX_INITIALIZE_IN_PROGRESS) { ... } }else { ... } /* Remember the thread that preempted this thread. */ execute_ptr -> tx_thread_performance_last_preempting_thread = thread_ptr;/* ... */ #endif /* Yes, modify the execute thread pointer. */ _tx_thread_execute_ptr = thread_ptr; #ifndef TX_MISRA_ENABLE /* If MISRA is not-enabled, insert a preemption and return in-line for performance. */ #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO /* Is the execute pointer different? */ if (_tx_thread_performance_execute_log[_tx_thread_performance__execute_log_index] != _tx_thread_execute_ptr) { /* Move to next entry. */ _tx_thread_performance__execute_log_index++; /* Check for wrap condition. */ if (_tx_thread_performance__execute_log_index >= TX_THREAD_EXECUTE_LOG_SIZE) { /* Set the index to the beginning. */ _tx_thread_performance__execute_log_index = ((UINT) 0); }if (_tx_thread_performance__execute_log_index >= TX_THREAD_EXECUTE_LOG_SIZE) { ... } /* Log the new execute pointer. */ _tx_thread_performance_execute_log[_tx_thread_performance__execute_log_index] = _tx_thread_execute_ptr; }if (_tx_thread_performance_execute_log[_tx_thread_performance__execute_log_index] != _tx_thread_execute_ptr) { ... } /* ... */#endif #ifdef TX_ENABLE_EVENT_TRACE /* Check that the event time stamp is unchanged. A different timestamp means that a later event wrote over the thread resume event. In that case, do nothing here. *//* ... */ if (entry_ptr != TX_NULL) { /* Is the timestamp the same? */ if (time_stamp == entry_ptr -> tx_trace_buffer_entry_time_stamp) { /* Timestamp is the same, set the "next thread pointer" to NULL. This can be used by the trace analysis tool to show idle system conditions. *//* ... */ entry_ptr -> tx_trace_buffer_entry_information_field_4 = TX_POINTER_TO_ULONG_CONVERT(_tx_thread_execute_ptr); }if (time_stamp == entry_ptr -> tx_trace_buffer_entry_time_stamp) { ... } }if (entry_ptr != TX_NULL) { ... } /* ... */#endif #ifdef TX_ENABLE_STACK_CHECKING /* Pickup the next execute pointer. */ thread_ptr = _tx_thread_execute_ptr; /* Check this thread's stack. */ TX_THREAD_STACK_CHECK(thread_ptr)/* ... */ #endif /* Now determine if preemption should take place. This is only possible if the current thread pointer is not the same as the execute thread pointer AND the system state and preempt disable flags are clear. *//* ... */ TX_THREAD_SYSTEM_RETURN_CHECK(combined_flags) if (combined_flags == ((ULONG) 0)) { #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO /* There is another thread ready to run and will be scheduled upon return. */ _tx_thread_performance_non_idle_return_count++;/* ... */ #endif /* Preemption is needed - return to the system! */ _tx_thread_system_return(); }if (combined_flags == ((ULONG) 0)) { ... } /* Return in-line when MISRA is not enabled. */ return;/* ... */ #endif }if (priority < execute_ptr -> tx_thread_preempt_threshold) { ... } }else { ... } }if (priority < _tx_thread_highest_priority) { ... } }if (head_ptr == TX_NULL) { ... } else { /* No, there are other threads at this priority already ready. */ /* Just add this thread to the priority list. */ tail_ptr = head_ptr -> tx_thread_ready_previous; tail_ptr -> tx_thread_ready_next = thread_ptr; head_ptr -> tx_thread_ready_previous = thread_ptr; thread_ptr -> tx_thread_ready_previous = tail_ptr; thread_ptr -> tx_thread_ready_next = head_ptr; }else { ... } }if (thread_ptr -> tx_thread_delayed_suspend == TX_FALSE) { ... } /* Else, delayed suspend flag was set. */ else { /* Clear the delayed suspend flag and change the state. */ thread_ptr -> tx_thread_delayed_suspend = TX_FALSE; thread_ptr -> tx_thread_state = TX_SUSPENDED; }else { ... } }if (thread_ptr -> tx_thread_state != TX_READY) { ... } #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO /* Is the execute pointer different? */ if (_tx_thread_performance_execute_log[_tx_thread_performance__execute_log_index] != _tx_thread_execute_ptr) { /* Move to next entry. */ _tx_thread_performance__execute_log_index++; /* Check for wrap condition. */ if (_tx_thread_performance__execute_log_index >= TX_THREAD_EXECUTE_LOG_SIZE) { /* Set the index to the beginning. */ _tx_thread_performance__execute_log_index = ((UINT) 0); }if (_tx_thread_performance__execute_log_index >= TX_THREAD_EXECUTE_LOG_SIZE) { ... } /* Log the new execute pointer. */ _tx_thread_performance_execute_log[_tx_thread_performance__execute_log_index] = _tx_thread_execute_ptr; }if (_tx_thread_performance_execute_log[_tx_thread_performance__execute_log_index] != _tx_thread_execute_ptr) { ... } /* ... */#endif #ifdef TX_ENABLE_EVENT_TRACE /* Check that the event time stamp is unchanged. A different timestamp means that a later event wrote over the thread resume event. In that case, do nothing here. *//* ... */ if (entry_ptr != TX_NULL) { /* Does the timestamp match? */ if (time_stamp == entry_ptr -> tx_trace_buffer_entry_time_stamp) { /* Timestamp is the same, set the "next thread pointer" to NULL. This can be used by the trace analysis tool to show idle system conditions. *//* ... */ #ifdef TX_MISRA_ENABLE entry_ptr -> tx_trace_buffer_entry_info_4 = TX_POINTER_TO_ULONG_CONVERT(_tx_thread_execute_ptr); #else entry_ptr -> tx_trace_buffer_entry_information_field_4 = TX_POINTER_TO_ULONG_CONVERT(_tx_thread_execute_ptr); #endif }if (time_stamp == entry_ptr -> tx_trace_buffer_entry_time_stamp) { ... } }if (entry_ptr != TX_NULL) { ... } /* ... */#endif /* Pickup thread pointer. */ TX_THREAD_GET_CURRENT(current_thread) /* Determine if a preemption condition is present. */ if (current_thread != _tx_thread_execute_ptr) { #ifdef TX_ENABLE_STACK_CHECKING /* Pickup the next execute pointer. */ thread_ptr = _tx_thread_execute_ptr; /* Check this thread's stack. */ TX_THREAD_STACK_CHECK(thread_ptr)/* ... */ #endif /* Now determine if preemption should take place. This is only possible if the current thread pointer is not the same as the execute thread pointer AND the system state and preempt disable flags are clear. *//* ... */ TX_THREAD_SYSTEM_RETURN_CHECK(combined_flags) if (combined_flags == ((ULONG) 0)) { #ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO /* There is another thread ready to run and will be scheduled upon return. */ _tx_thread_performance_non_idle_return_count++;/* ... */ #endif /* Preemption is needed - return to the system! */ _tx_thread_system_return(); }if (combined_flags == ((ULONG) 0)) { ... } }if (current_thread != _tx_thread_execute_ptr) { ... } }_tx_thread_system_ni_resume (TX_THREAD *thread_ptr) { ... } /* ... */#endif...