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
101
102
103
104
105
107
108
109
110
111
112
113
114
115
116
117
118
119
121
122
123
124
125
126
127
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
151
152
155
156
157
159
160
161
162
168
169
170
171
177
178
179
180
181
182
183
184
190
191
192
193
199
200
203
204
205
206
207
208
209
210
211
212
216
217
218
219
220
221
222
223
224
225
226
227
228
230
231
232
233
234
235
236
237
...
...
...
#define TX_SOURCE_CODE
#include "tx_api.h"
#include "tx_trace.h"
#include "tx_thread.h"
...
...
UINT _tx_thread_wait_abort(TX_THREAD *thread_ptr)
{
TX_INTERRUPT_SAVE_AREA
VOID (*suspend_cleanup)(struct TX_THREAD_STRUCT *suspend_thread_ptr, ULONG suspension_sequence);
UINT status;
ULONG suspension_sequence;
TX_DISABLE
TX_TRACE_IN_LINE_INSERT(TX_TRACE_THREAD_WAIT_ABORT, thread_ptr, thread_ptr -> tx_thread_state, 0, 0, TX_TRACE_THREAD_EVENTS)
TX_EL_THREAD_WAIT_ABORT_INSERT
if (thread_ptr -> tx_thread_state < TX_SLEEP)
{
/* ... */
TX_RESTORE
/* ... */
status = TX_WAIT_ABORT_ERROR;
}if (thread_ptr -> tx_thread_state < TX_SLEEP) { ... }
else
{
if (thread_ptr -> tx_thread_state == TX_SLEEP)
{
thread_ptr -> tx_thread_state = TX_SUSPENDED;
/* ... */
thread_ptr -> tx_thread_suspend_status = TX_WAIT_ABORTED;
thread_ptr -> tx_thread_suspend_cleanup = TX_NULL;
#ifndef TX_NOT_INTERRUPTABLE
_tx_thread_preempt_disable++;
TX_RESTORE/* ... */
#endif
}if (thread_ptr -> tx_thread_state == TX_SLEEP) { ... }
else
{
thread_ptr -> tx_thread_state = TX_SUSPENDED;
suspend_cleanup = thread_ptr -> tx_thread_suspend_cleanup;
#ifndef TX_NOT_INTERRUPTABLE
/* ... */
suspension_sequence = thread_ptr -> tx_thread_suspension_sequence;/* ... */
#else
suspension_sequence = ((ULONG) 0);/* ... */
#endif
/* ... */
thread_ptr -> tx_thread_suspend_status = TX_WAIT_ABORTED;
#ifndef TX_NOT_INTERRUPTABLE
_tx_thread_preempt_disable++;
TX_RESTORE/* ... */
#endif
if (suspend_cleanup != TX_NULL)
{
(suspend_cleanup)(thread_ptr, suspension_sequence);
}if (suspend_cleanup != TX_NULL) { ... }
}else { ... }
if (thread_ptr -> tx_thread_suspend_status == TX_WAIT_ABORTED)
{
#ifdef TX_THREAD_ENABLE_PERFORMANCE_INFO
_tx_thread_performance_wait_abort_count++;
thread_ptr -> tx_thread_performance_wait_abort_count++;/* ... */
#endif
#ifdef TX_NOT_INTERRUPTABLE
_tx_thread_system_ni_resume(thread_ptr);
TX_RESTORE/* ... */
#else
_tx_thread_system_resume(thread_ptr);/* ... */
#endif
status = TX_SUCCESS;
}if (thread_ptr -> tx_thread_suspend_status == TX_WAIT_ABORTED) { ... }
else
{
#ifdef TX_NOT_INTERRUPTABLE
TX_RESTORE
/* ... */
#else
TX_DISABLE
_tx_thread_preempt_disable--;
TX_RESTORE/* ... */
#endif
/* ... */
status = TX_WAIT_ABORT_ERROR;
}else { ... }
}else { ... }
return(status);
}{ ... }