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
93
94
95
96
97
98
99
103
104
105
106
107
108
111
112
113
114
115
116
117
118
119
120
121
127
133
134
135
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
161
162
163
164
165
166
172
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
203
204
205
206
207
208
210
211
212
213
214
215
221
227
228
229
230
231
232
233
234
235
236
237
238
239
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
267
268
269
270
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
293
294
295
296
302
303
304
305
306
307
308
309
311
312
313
320
321
322
323
324
325
326
327
328
329
330
331
332
333
336
337
338
339
...
...
...
#define TX_SOURCE_CODE
#include "tx_api.h"
#include "tx_thread.h"
#include "tx_mutex.h"
...
...
VOID _tx_mutex_priority_change(TX_THREAD *thread_ptr, UINT new_priority)
{
#ifndef TX_NOT_INTERRUPTABLE
TX_INTERRUPT_SAVE_AREA/* ... */
#endif
TX_THREAD *execute_ptr;
TX_THREAD *next_execute_ptr;
UINT original_priority;
#ifndef TX_DISABLE_PREEMPTION_THRESHOLD
ULONG priority_bit;
#if TX_MAX_PRIORITIES > 32
UINT map_index;
#endif/* ... */
#endif
#ifndef TX_NOT_INTERRUPTABLE
TX_DISABLE/* ... */
#endif
if (thread_ptr -> tx_thread_state != TX_READY)
{
thread_ptr -> tx_thread_priority = new_priority;
if (thread_ptr -> tx_thread_user_preempt_threshold < new_priority)
{
thread_ptr -> tx_thread_preempt_threshold = thread_ptr -> tx_thread_user_preempt_threshold;
}if (thread_ptr -> tx_thread_user_preempt_threshold < new_priority) { ... }
else
{
thread_ptr -> tx_thread_preempt_threshold = new_priority;
}else { ... }
#ifndef TX_NOT_INTERRUPTABLE
TX_RESTORE/* ... */
#endif
}if (thread_ptr -> tx_thread_state != TX_READY) { ... }
else
{
execute_ptr = _tx_thread_execute_ptr;
original_priority = thread_ptr -> tx_thread_priority;
#ifdef TX_NOT_INTERRUPTABLE
_tx_thread_preempt_disable++;
thread_ptr -> tx_thread_state = TX_PRIORITY_CHANGE;
_tx_thread_system_ni_suspend(thread_ptr, ((ULONG) 0));
/* ... */
thread_ptr -> tx_thread_priority = new_priority;
if (thread_ptr -> tx_thread_user_preempt_threshold < new_priority)
{
thread_ptr -> tx_thread_preempt_threshold = thread_ptr -> tx_thread_user_preempt_threshold;
}if (thread_ptr -> tx_thread_user_preempt_threshold < new_priority) { ... }
else
{
thread_ptr -> tx_thread_preempt_threshold = new_priority;
}else { ... }
_tx_thread_system_ni_resume(thread_ptr);
_tx_thread_preempt_disable--;/* ... */
#else
_tx_thread_preempt_disable = _tx_thread_preempt_disable + ((UINT) 2);
thread_ptr -> tx_thread_state = TX_PRIORITY_CHANGE;
thread_ptr -> tx_thread_suspending = TX_TRUE;
thread_ptr -> tx_thread_timer.tx_timer_internal_remaining_ticks = ((ULONG) 0);
TX_RESTORE
/* ... */
_tx_thread_system_suspend(thread_ptr);
TX_DISABLE
/* ... */
thread_ptr -> tx_thread_priority = new_priority;
if (thread_ptr -> tx_thread_user_preempt_threshold < new_priority)
{
thread_ptr -> tx_thread_preempt_threshold = thread_ptr -> tx_thread_user_preempt_threshold;
}if (thread_ptr -> tx_thread_user_preempt_threshold < new_priority) { ... }
else
{
thread_ptr -> tx_thread_preempt_threshold = new_priority;
}else { ... }
TX_RESTORE
_tx_thread_system_resume(thread_ptr);/* ... */
#endif
TX_MUTEX_PRIORITY_CHANGE_EXTENSION
#ifndef TX_NOT_INTERRUPTABLE
TX_DISABLE/* ... */
#endif
next_execute_ptr = _tx_thread_execute_ptr;
if (thread_ptr != next_execute_ptr)
{
if (thread_ptr -> tx_thread_state == TX_READY)
{
if (thread_ptr -> tx_thread_priority <= next_execute_ptr -> tx_thread_priority)
{
if (thread_ptr == execute_ptr)
{
/* ... */
_tx_thread_execute_ptr = thread_ptr;
if (original_priority < new_priority)
{
_tx_thread_priority_list[thread_ptr -> tx_thread_priority] = thread_ptr;
}if (original_priority < new_priority) { ... }
}if (thread_ptr == execute_ptr) { ... }
}if (thread_ptr -> tx_thread_priority <= next_execute_ptr -> tx_thread_priority) { ... }
else
{
if (thread_ptr -> tx_thread_preempt_threshold < thread_ptr -> tx_thread_priority)
{
if (thread_ptr -> tx_thread_preempt_threshold <= next_execute_ptr -> tx_thread_priority)
{
/* ... */
_tx_thread_execute_ptr = thread_ptr;
if (original_priority < new_priority)
{
_tx_thread_priority_list[thread_ptr -> tx_thread_priority] = thread_ptr;
}if (original_priority < new_priority) { ... }
}if (thread_ptr -> tx_thread_preempt_threshold <= next_execute_ptr -> tx_thread_priority) { ... }
#ifndef TX_DISABLE_PREEMPTION_THRESHOLD
else
{
/* ... */
#if TX_MAX_PRIORITIES > 32
map_index = (thread_ptr -> tx_thread_priority)/ ((UINT) 32);
TX_DIV32_BIT_SET(thread_ptr -> tx_thread_priority, priority_bit)
_tx_thread_preempted_map_active = _tx_thread_preempted_map_active | priority_bit;/* ... */
#endif
TX_MOD32_BIT_SET(thread_ptr -> tx_thread_priority, priority_bit)
_tx_thread_preempted_maps[MAP_INDEX] = _tx_thread_preempted_maps[MAP_INDEX] | priority_bit;
}else { ... }
/* ... */#endif
}if (thread_ptr -> tx_thread_preempt_threshold < thread_ptr -> tx_thread_priority) { ... }
}else { ... }
}if (thread_ptr -> tx_thread_state == TX_READY) { ... }
}if (thread_ptr != next_execute_ptr) { ... }
#ifndef TX_NOT_INTERRUPTABLE
TX_RESTORE/* ... */
#endif
}else { ... }
}{ ... }