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
103
104
105
106
113
114
115
116
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
151
152
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_tcp.h"
#include "tx_thread.h"
...
...
VOID _nx_tcp_socket_thread_resume(TX_THREAD **suspension_list_head, UINT status)
{
TX_INTERRUPT_SAVE_AREA
TX_THREAD *thread_ptr;
TX_DISABLE
thread_ptr = *suspension_list_head;
if (thread_ptr)
{
if (thread_ptr == thread_ptr -> tx_thread_suspended_next)
{
/* ... */
*suspension_list_head = TX_NULL;
}if (thread_ptr == thread_ptr -> tx_thread_suspended_next) { ... }
else
{
/* ... */
*suspension_list_head = thread_ptr -> tx_thread_suspended_next;
(thread_ptr -> tx_thread_suspended_next) -> tx_thread_suspended_previous =
thread_ptr -> tx_thread_suspended_previous;
(thread_ptr -> tx_thread_suspended_previous) -> tx_thread_suspended_next =
thread_ptr -> tx_thread_suspended_next;
}else { ... }
thread_ptr -> tx_thread_suspend_cleanup = TX_NULL;
_tx_thread_preempt_disable++;
TX_RESTORE
thread_ptr -> tx_thread_suspend_status = status;
_tx_thread_system_resume(thread_ptr);
}if (thread_ptr) { ... }
else
{
TX_RESTORE
}else { ... }
}{ ... }