1
10
13
14
20
21
22
23
24
25
26
27
28
29
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
128
129
130
131
132
133
134
135
136
137
138
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
169
170
173
174
175
176
182
188
194
195
196
197
198
199
200
201
202
203
204
205
206
207
209
210
211
212
213
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
231
232
233
234
235
236
237
238
241
242
243
244
245
246
247
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
289
290
291
292
293
294
295
296
302
303
304
305
306
307
308
309
310
311
312
313
314
317
318
319
320
321
322
323
334
335
336
337
338
339
340
341
342
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
366
367
368
369
370
371
372
373
374
375
376
377
387
388
389
390
391
392
393
394
396
397
398
399
402
403
404
405
406
407
408
409
419
420
421
422
423
424
425
426
427
428
429
430
431
441
442
443
444
445
446
447
448
449
450
456
457
458
459
460
463
464
465
466
467
468
469
470
471
472
474
475
476
477
478
479
480
498
499
500
501
502
504
505
506
507
508
509
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
562
563
564
565
566
567
568
569
570
572
573
574
575
576
577
578
579
580
581
582
583
584
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
604
605
606
607
608
611
612
613
614
615
616
617
618
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
667
668
669
670
671
672
673
674
692
693
694
695
696
698
699
700
701
702
703
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
733
734
735
736
737
738
739
740
741
744
745
746
747
748
749
750
751
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
777
778
779
781
782
783
784
785
786
801
802
803
804
805
806
807
808
809
810
811
812
813
814
820
826
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
...
...
...
#define TX_SOURCE_CODE
#include "tx_api.h"
#include "tx_trace.h"
#include "tx_thread.h"
#ifdef TX_INLINE_THREAD_RESUME_SUSPEND
#ifndef TX_NO_TIMER
#include "tx_timer.h"
#endif/* ... */
#endif...
...
UINT _tx_thread_suspend(TX_THREAD *thread_ptr)
{
TX_INTERRUPT_SAVE_AREA
TX_THREAD *current_thread;
UINT status;
#ifndef TX_INLINE_THREAD_RESUME_SUSPEND
TX_DISABLE
TX_THREAD_GET_CURRENT(current_thread)
TX_TRACE_IN_LINE_INSERT(TX_TRACE_THREAD_SUSPEND_API, thread_ptr, thread_ptr -> tx_thread_state, TX_POINTER_TO_ULONG_CONVERT(&status), 0, TX_TRACE_THREAD_EVENTS)
TX_EL_THREAD_SUSPEND_INSERT
if (thread_ptr -> tx_thread_state == TX_READY)
{
status = TX_SUCCESS;
if (TX_THREAD_GET_SYSTEM_STATE() == ((ULONG) 0))
{
if (current_thread == thread_ptr)
{
if (_tx_thread_preempt_disable != ((UINT) 0))
{
/* ... */
status = TX_SUSPEND_ERROR;
}if (_tx_thread_preempt_disable != ((UINT) 0)) { ... }
}if (current_thread == thread_ptr) { ... }
}if (TX_THREAD_GET_SYSTEM_STATE() == ((ULONG) 0)) { ... }
if (status == TX_SUCCESS)
{
thread_ptr -> tx_thread_state = TX_SUSPENDED;
#ifdef TX_NOT_INTERRUPTABLE
_tx_thread_system_ni_suspend(thread_ptr, ((ULONG) 0));
TX_RESTORE/* ... */
#else
thread_ptr -> tx_thread_suspending = TX_TRUE;
thread_ptr -> tx_thread_timer.tx_timer_internal_remaining_ticks = ((ULONG) 0);
_tx_thread_preempt_disable++;
TX_RESTORE
_tx_thread_system_suspend(thread_ptr);/* ... */
#endif
#ifdef TX_MISRA_ENABLE
TX_DISABLE
status = TX_SUCCESS;/* ... */
#else
return(TX_SUCCESS);/* ... */
#endif
}if (status == TX_SUCCESS) { ... }
}if (thread_ptr -> tx_thread_state == TX_READY) { ... }
else if (thread_ptr -> tx_thread_state == TX_TERMINATED)
{
status = TX_SUSPEND_ERROR;
}else if (thread_ptr -> tx_thread_state == TX_TERMINATED) { ... }
else if (thread_ptr -> tx_thread_state == TX_COMPLETED)
{
status = TX_SUSPEND_ERROR;
}else if (thread_ptr -> tx_thread_state == TX_COMPLETED) { ... }
else if (thread_ptr -> tx_thread_state == TX_SUSPENDED)
{
status = TX_SUCCESS;
}else if (thread_ptr -> tx_thread_state == TX_SUSPENDED) { ... }
else
{
thread_ptr -> tx_thread_delayed_suspend = TX_TRUE;
status = TX_SUCCESS;
}else { ... }
TX_RESTORE
/* ... */
return(status);
/* ... */
#else
/* ... */
UINT priority;
UINT base_priority;
ULONG priority_map;
ULONG priority_bit;
ULONG combined_flags;
TX_THREAD *ready_next;
TX_THREAD *ready_previous;
#if TX_MAX_PRIORITIES > 32
UINT map_index;
#endif
#ifdef TX_ENABLE_EVENT_TRACE
TX_TRACE_BUFFER_ENTRY *entry_ptr;
ULONG time_stamp = ((ULONG) 0);/* ... */
#endif
TX_THREAD_GET_CURRENT(current_thread)
#ifdef TX_ENABLE_STACK_CHECKING
TX_THREAD_STACK_CHECK(thread_ptr)/* ... */
#endif
TX_DISABLE
#ifndef TX_NO_TIMER
if (thread_ptr == current_thread)
{
_tx_timer_time_slice = thread_ptr -> tx_thread_new_time_slice;
}if (thread_ptr == current_thread) { ... }
/* ... */#endif
TX_TRACE_IN_LINE_INSERT(TX_TRACE_THREAD_SUSPEND_API, thread_ptr, thread_ptr -> tx_thread_state, TX_POINTER_TO_ULONG_CONVERT(&status), 0, TX_TRACE_THREAD_EVENTS)
TX_EL_THREAD_SUSPEND_INSERT
if (thread_ptr -> tx_thread_state == TX_READY)
{
status = TX_SUCCESS;
if (TX_THREAD_GET_SYSTEM_STATE() == ((ULONG) 0))
{
if (current_thread == thread_ptr)
{
if (_tx_thread_preempt_disable != ((UINT) 0))
{
/* ... */
status = TX_SUSPEND_ERROR;
}if (_tx_thread_preempt_disable != ((UINT) 0)) { ... }
}if (current_thread == thread_ptr) { ... }
}if (TX_THREAD_GET_SYSTEM_STATE() == ((ULONG) 0)) { ... }
if (status == TX_SUCCESS)
{
#ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO
thread_ptr -> tx_thread_performance_suspend_count++;
_tx_thread_performance_suspend_count++;/* ... */
#endif
thread_ptr -> tx_thread_state = TX_SUSPENDED;
TX_THREAD_STATE_CHANGE(thread_ptr, TX_SUSPENDED)
TX_EL_THREAD_STATUS_CHANGE_INSERT(thread_ptr, thread_ptr -> tx_thread_state)
#ifdef TX_ENABLE_EVENT_TRACE
entry_ptr = _tx_trace_buffer_current_ptr;/* ... */
#endif
TX_TRACE_IN_LINE_INSERT(TX_TRACE_THREAD_SUSPEND, thread_ptr, ((ULONG) thread_ptr -> tx_thread_state), TX_POINTER_TO_ULONG_CONVERT(&priority), TX_POINTER_TO_ULONG_CONVERT(_tx_thread_execute_ptr), TX_TRACE_INTERNAL_EVENTS)
#ifdef TX_ENABLE_EVENT_TRACE
/* ... */
if (entry_ptr != TX_NULL)
{
time_stamp = entry_ptr -> tx_trace_buffer_entry_time_stamp;
}if (entry_ptr != TX_NULL) { ... }
/* ... */#endif
priority = thread_ptr -> tx_thread_priority;
ready_next = thread_ptr -> tx_thread_ready_next;
ready_previous = thread_ptr -> tx_thread_ready_previous;
/* ... */
if (ready_next != thread_ptr)
{
ready_next -> tx_thread_ready_previous = ready_previous;
ready_previous -> tx_thread_ready_next = ready_next;
if (_tx_thread_priority_list[priority] == thread_ptr)
{
_tx_thread_priority_list[priority] = ready_next;
#ifndef TX_DISABLE_PREEMPTION_THRESHOLD
#if TX_MAX_PRIORITIES > 32
map_index = priority/((UINT) 32);/* ... */
#endif
if (_tx_thread_preempted_maps[MAP_INDEX] != ((ULONG) 0))
{
TX_MOD32_BIT_SET(priority, priority_bit)
_tx_thread_preempted_maps[MAP_INDEX] = _tx_thread_preempted_maps[MAP_INDEX] & (~(priority_bit));
#if TX_MAX_PRIORITIES > 32
if (_tx_thread_preempted_maps[MAP_INDEX] == ((ULONG) 0))
{
TX_DIV32_BIT_SET(priority, priority_bit)
_tx_thread_preempted_map_active = _tx_thread_preempted_map_active & (~(priority_bit));
}if (_tx_thread_preempted_maps[MAP_INDEX] == ((ULONG) 0)) { ... }
/* ... */#endif
}if (_tx_thread_preempted_maps[MAP_INDEX] != ((ULONG) 0)) { ... }
/* ... */#endif
}if (_tx_thread_priority_list[priority] == thread_ptr) { ... }
}if (ready_next != thread_ptr) { ... }
else
{
/* ... */
_tx_thread_priority_list[priority] = TX_NULL;
#if TX_MAX_PRIORITIES > 32
map_index = priority/((UINT) 32);/* ... */
#endif
TX_MOD32_BIT_SET(priority, priority_bit)
_tx_thread_priority_maps[MAP_INDEX] = _tx_thread_priority_maps[MAP_INDEX] & (~(priority_bit));
#if TX_MAX_PRIORITIES > 32
if (_tx_thread_priority_maps[MAP_INDEX] == ((ULONG) 0))
{
TX_DIV32_BIT_SET(priority, priority_bit)
_tx_thread_priority_map_active = _tx_thread_priority_map_active & (~(priority_bit));
}if (_tx_thread_priority_maps[MAP_INDEX] == ((ULONG) 0)) { ... }
/* ... */#endif
#ifndef TX_DISABLE_PREEMPTION_THRESHOLD
if (_tx_thread_preempted_maps[MAP_INDEX] != ((ULONG) 0))
{
TX_MOD32_BIT_SET(priority, priority_bit)
_tx_thread_preempted_maps[MAP_INDEX] = _tx_thread_preempted_maps[MAP_INDEX] & (~(priority_bit));
#if TX_MAX_PRIORITIES > 32
if (_tx_thread_preempted_maps[MAP_INDEX] == ((ULONG) 0))
{
TX_DIV32_BIT_SET(priority, priority_bit)
_tx_thread_preempted_map_active = _tx_thread_preempted_map_active & (~(priority_bit));
}if (_tx_thread_preempted_maps[MAP_INDEX] == ((ULONG) 0)) { ... }
/* ... */#endif
}if (_tx_thread_preempted_maps[MAP_INDEX] != ((ULONG) 0)) { ... }
/* ... */#endif
#if TX_MAX_PRIORITIES > 32
priority_map = _tx_thread_priority_map_active;
if (priority_map != ((ULONG) 0))
{
TX_LOWEST_SET_BIT_CALCULATE(priority_map, map_index)
}if (priority_map != ((ULONG) 0)) { ... }
base_priority = map_index * ((UINT) 32);/* ... */
#else
base_priority = ((UINT) 0);/* ... */
#endif
priority_map = _tx_thread_priority_maps[MAP_INDEX];
if (priority_map == ((ULONG) 0))
{
/* ... */
_tx_thread_highest_priority = ((UINT) TX_MAX_PRIORITIES);
_tx_thread_execute_ptr = TX_NULL;
#ifndef TX_MISRA_ENABLE
#ifdef TX_ENABLE_EVENT_TRACE
/* ... */
if (entry_ptr != TX_NULL)
{
if (time_stamp == entry_ptr -> tx_trace_buffer_entry_time_stamp)
{
/* ... */
entry_ptr -> tx_trace_buffer_entry_information_field_4 = 0;
}if (time_stamp == entry_ptr -> tx_trace_buffer_entry_time_stamp) { ... }
}if (entry_ptr != TX_NULL) { ... }
/* ... */#endif
TX_RESTORE
/* ... */
TX_THREAD_SYSTEM_RETURN_CHECK(combined_flags)
if (combined_flags == ((ULONG) 0))
{
#ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO
_tx_thread_performance_idle_return_count++;/* ... */
#endif
_tx_thread_system_return();
}if (combined_flags == ((ULONG) 0)) { ... }
return(TX_SUCCESS);/* ... */
#endif
}if (priority_map == ((ULONG) 0)) { ... }
else
{
TX_LOWEST_SET_BIT_CALCULATE(priority_map, priority_bit)
_tx_thread_highest_priority = base_priority + priority_bit;
}else { ... }
}else { ... }
if (thread_ptr == _tx_thread_execute_ptr)
{
_tx_thread_execute_ptr = _tx_thread_priority_list[_tx_thread_highest_priority];
#ifndef TX_DISABLE_PREEMPTION_THRESHOLD
#if TX_MAX_PRIORITIES > 32
if (_tx_thread_preempted_map_active != ((ULONG) 0))
#else
if (_tx_thread_preempted_maps[MAP_INDEX] != ((ULONG) 0))
#endif
{
#ifndef TX_NOT_INTERRUPTABLE
_tx_thread_preempt_disable++;
TX_RESTORE
/* ... */
TX_DISABLE
_tx_thread_preempt_disable--;/* ... */
#endif
/* ... */
#if TX_MAX_PRIORITIES > 32
priority_map = _tx_thread_preempted_map_active;
TX_LOWEST_SET_BIT_CALCULATE(priority_map, map_index)
base_priority = map_index * ((UINT) 32);/* ... */
#else
base_priority = ((UINT) 0);/* ... */
#endif
priority_map = _tx_thread_preempted_maps[MAP_INDEX];
TX_LOWEST_SET_BIT_CALCULATE(priority_map, priority_bit)
priority = base_priority + priority_bit;
if (_tx_thread_highest_priority >= (_tx_thread_priority_list[priority] -> tx_thread_preempt_threshold))
{
/* ... */
_tx_thread_execute_ptr = _tx_thread_priority_list[priority];
#ifdef TX_ENABLE_EVENT_TRACE
/* ... */
if (entry_ptr != TX_NULL)
{
if (time_stamp == entry_ptr -> tx_trace_buffer_entry_time_stamp)
{
/* ... */
#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
TX_MOD32_BIT_SET(priority, priority_bit)
_tx_thread_preempted_maps[MAP_INDEX] = _tx_thread_preempted_maps[MAP_INDEX] & (~(priority_bit));
#if TX_MAX_PRIORITIES > 32
if (_tx_thread_preempted_maps[MAP_INDEX] == ((ULONG) 0))
{
TX_DIV32_BIT_SET(priority, priority_bit)
_tx_thread_preempted_map_active = _tx_thread_preempted_map_active & (~(priority_bit));
}if (_tx_thread_preempted_maps[MAP_INDEX] == ((ULONG) 0)) { ... }
/* ... */#endif
}if (_tx_thread_highest_priority >= (_tx_thread_priority_list[priority] -> tx_thread_preempt_threshold)) { ... }
...}/* ... */
#endif
#ifndef TX_MISRA_ENABLE
#ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO
if (_tx_thread_performance_execute_log[_tx_thread_performance__execute_log_index] != _tx_thread_execute_ptr)
{
_tx_thread_performance__execute_log_index++;
if (_tx_thread_performance__execute_log_index >= TX_THREAD_EXECUTE_LOG_SIZE)
{
_tx_thread_performance__execute_log_index = ((UINT) 0);
}if (_tx_thread_performance__execute_log_index >= TX_THREAD_EXECUTE_LOG_SIZE) { ... }
_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
/* ... */
if (entry_ptr != TX_NULL)
{
if (time_stamp == entry_ptr -> tx_trace_buffer_entry_time_stamp)
{
/* ... */
entry_ptr -> tx_trace_buffer_entry_information_field_4 = 0;
}if (time_stamp == entry_ptr -> tx_trace_buffer_entry_time_stamp) { ... }
}if (entry_ptr != TX_NULL) { ... }
/* ... */#endif
TX_RESTORE
/* ... */
TX_THREAD_SYSTEM_RETURN_CHECK(combined_flags)
if (combined_flags == ((ULONG) 0))
{
#ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO
_tx_thread_performance_non_idle_return_count++;/* ... */
#endif
_tx_thread_system_return();
}if (combined_flags == ((ULONG) 0)) { ... }
return(TX_SUCCESS);/* ... */
#endif
}if (thread_ptr == _tx_thread_execute_ptr) { ... }
#ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO
if (_tx_thread_performance_execute_log[_tx_thread_performance__execute_log_index] != _tx_thread_execute_ptr)
{
_tx_thread_performance__execute_log_index++;
if (_tx_thread_performance__execute_log_index >= TX_THREAD_EXECUTE_LOG_SIZE)
{
_tx_thread_performance__execute_log_index = ((UINT) 0);
}if (_tx_thread_performance__execute_log_index >= TX_THREAD_EXECUTE_LOG_SIZE) { ... }
_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
/* ... */
if (entry_ptr != TX_NULL)
{
if (time_stamp == entry_ptr -> tx_trace_buffer_entry_time_stamp)
{
/* ... */
#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
TX_RESTORE
if (current_thread != _tx_thread_execute_ptr)
{
#ifdef TX_ENABLE_STACK_CHECKING
thread_ptr = _tx_thread_execute_ptr;
TX_THREAD_STACK_CHECK(thread_ptr)/* ... */
#endif
/* ... */
TX_THREAD_SYSTEM_RETURN_CHECK(combined_flags)
if (combined_flags == ((ULONG) 0))
{
#ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO
if (_tx_thread_execute_ptr == TX_NULL)
{
_tx_thread_performance_idle_return_count++;
}if (_tx_thread_execute_ptr == TX_NULL) { ... }
else
{
_tx_thread_performance_non_idle_return_count++;
}else { ... }
/* ... */#endif
_tx_thread_system_return();
}if (combined_flags == ((ULONG) 0)) { ... }
}if (current_thread != _tx_thread_execute_ptr) { ... }
TX_DISABLE
status = TX_SUCCESS;
}if (status == TX_SUCCESS) { ... }
}if (thread_ptr -> tx_thread_state == TX_READY) { ... }
else if (thread_ptr -> tx_thread_state == TX_TERMINATED)
{
status = TX_SUSPEND_ERROR;
}else if (thread_ptr -> tx_thread_state == TX_TERMINATED) { ... }
else if (thread_ptr -> tx_thread_state == TX_COMPLETED)
{
status = TX_SUSPEND_ERROR;
}else if (thread_ptr -> tx_thread_state == TX_COMPLETED) { ... }
else if (thread_ptr -> tx_thread_state == TX_SUSPENDED)
{
status = TX_SUCCESS;
}else if (thread_ptr -> tx_thread_state == TX_SUSPENDED) { ... }
else
{
thread_ptr -> tx_thread_delayed_suspend = TX_TRUE;
status = TX_SUCCESS;
}else { ... }
TX_RESTORE
return(status);/* ... */
#endif
}{ ... }