1
10
13
14
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
108
109
110
111
112
113
114
115
116
117
118
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
157
158
159
160
161
162
163
164
166
167
168
174
185
186
187
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
217
218
219
220
222
223
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
...
...
...
#define TX_SOURCE_CODE
#include "tx_api.h"
#include "tx_trace.h"
#include "tx_thread.h"
#include "tx_byte_pool.h"
...
...
UINT _tx_byte_pool_prioritize(TX_BYTE_POOL *pool_ptr)
{
TX_INTERRUPT_SAVE_AREA
TX_THREAD *thread_ptr;
TX_THREAD *priority_thread_ptr;
TX_THREAD *head_ptr;
UINT suspended_count;
TX_THREAD *next_thread;
TX_THREAD *previous_thread;
UINT list_changed;
TX_DISABLE
TX_TRACE_IN_LINE_INSERT(TX_TRACE_BYTE_POOL_PRIORITIZE, pool_ptr, pool_ptr -> tx_byte_pool_suspended_count, TX_POINTER_TO_ULONG_CONVERT(&suspended_count), 0, TX_TRACE_BYTE_POOL_EVENTS)
TX_EL_BYTE_POOL_PRIORITIZE_INSERT
suspended_count = pool_ptr -> tx_byte_pool_suspended_count;
if (suspended_count < ((UINT) 2))
{
TX_RESTORE
}if (suspended_count < ((UINT) 2)) { ... }
else if (suspended_count == ((UINT) 2))
{
head_ptr = pool_ptr -> tx_byte_pool_suspension_list;
next_thread = head_ptr -> tx_thread_suspended_next;
if ((next_thread -> tx_thread_priority) < (head_ptr -> tx_thread_priority))
{
pool_ptr -> tx_byte_pool_suspension_list = next_thread;
}if ((next_thread -> tx_thread_priority) < (head_ptr -> tx_thread_priority)) { ... }
TX_RESTORE
}else if (suspended_count == ((UINT) 2)) { ... }
else
{
head_ptr = pool_ptr -> tx_byte_pool_suspension_list;
priority_thread_ptr = head_ptr;
thread_ptr = priority_thread_ptr -> tx_thread_suspended_next;
_tx_thread_preempt_disable++;
list_changed = TX_FALSE;
do
{
if (thread_ptr -> tx_thread_priority < priority_thread_ptr -> tx_thread_priority)
{
priority_thread_ptr = thread_ptr;
}if (thread_ptr -> tx_thread_priority < priority_thread_ptr -> tx_thread_priority) { ... }
TX_RESTORE
TX_DISABLE
/* ... */
if (head_ptr != pool_ptr -> tx_byte_pool_suspension_list)
{
list_changed = TX_TRUE;
}if (head_ptr != pool_ptr -> tx_byte_pool_suspension_list) { ... }
else
{
if (suspended_count != pool_ptr -> tx_byte_pool_suspended_count)
{
list_changed = TX_TRUE;
}if (suspended_count != pool_ptr -> tx_byte_pool_suspended_count) { ... }
}else { ... }
if (list_changed == TX_FALSE)
{
thread_ptr = thread_ptr -> tx_thread_suspended_next;
}if (list_changed == TX_FALSE) { ... }
else
{
head_ptr = pool_ptr -> tx_byte_pool_suspension_list;
suspended_count = pool_ptr -> tx_byte_pool_suspended_count;
priority_thread_ptr = head_ptr;
thread_ptr = priority_thread_ptr -> tx_thread_suspended_next;
list_changed = TX_FALSE;
}else { ... }
...} while (thread_ptr != head_ptr);
_tx_thread_preempt_disable--;
/* ... */
if (priority_thread_ptr != head_ptr)
{
/* ... */
/* ... */
next_thread = priority_thread_ptr -> tx_thread_suspended_next;
previous_thread = priority_thread_ptr -> tx_thread_suspended_previous;
next_thread -> tx_thread_suspended_previous = previous_thread;
previous_thread -> tx_thread_suspended_next = next_thread;
previous_thread = head_ptr -> tx_thread_suspended_previous;
priority_thread_ptr -> tx_thread_suspended_next = head_ptr;
priority_thread_ptr -> tx_thread_suspended_previous = previous_thread;
previous_thread -> tx_thread_suspended_next = priority_thread_ptr;
head_ptr -> tx_thread_suspended_previous = priority_thread_ptr;
pool_ptr -> tx_byte_pool_suspension_list = priority_thread_ptr;
}if (priority_thread_ptr != head_ptr) { ... }
TX_RESTORE
_tx_thread_system_preempt_check();
}else { ... }
return(TX_SUCCESS);
}{ ... }