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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
118
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
205
206
207
208
209
210
211
212
213
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "tx_thread.h"
#include "nx_ip.h"
...
...
UINT _nx_ip_raw_packet_receive(NX_IP *ip_ptr, NX_PACKET **packet_ptr, ULONG wait_option)
{
TX_INTERRUPT_SAVE_AREA
UINT status;
TX_THREAD *thread_ptr;
NX_PACKET *work_ptr;
#ifdef TX_ENABLE_EVENT_TRACE
TX_TRACE_BUFFER_ENTRY *trace_event;
ULONG trace_timestamp;/* ... */
#endif
NX_TRACE_IN_LINE_INSERT(NX_TRACE_IP_RAW_PACKET_RECEIVE, ip_ptr, 0, wait_option, 0, NX_TRACE_IP_EVENTS, &trace_event, &trace_timestamp);
TX_DISABLE
if (ip_ptr -> nx_ip_raw_received_packet_count)
{
ip_ptr -> nx_ip_raw_received_packet_count--;
work_ptr = ip_ptr -> nx_ip_raw_received_packet_head;
ip_ptr -> nx_ip_raw_received_packet_head = work_ptr -> nx_packet_queue_next;
if (ip_ptr -> nx_ip_raw_received_packet_tail == work_ptr)
{
ip_ptr -> nx_ip_raw_received_packet_tail = NX_NULL;
}if (ip_ptr -> nx_ip_raw_received_packet_tail == work_ptr) { ... }
*packet_ptr = work_ptr;
NX_TRACE_EVENT_UPDATE(trace_event, trace_timestamp, NX_TRACE_IP_RAW_PACKET_RECEIVE, 0, *packet_ptr, 0, 0);
status = NX_SUCCESS;
}if (ip_ptr -> nx_ip_raw_received_packet_count) { ... }
else
{
if (wait_option)
{
thread_ptr = _tx_thread_current_ptr;
thread_ptr -> tx_thread_suspend_cleanup = _nx_ip_raw_packet_cleanup;
/* ... */
thread_ptr -> tx_thread_suspend_control_block = (void *)ip_ptr;
thread_ptr -> tx_thread_additional_suspend_info = (void *)packet_ptr;
if (ip_ptr -> nx_ip_raw_packet_suspension_list)
{
thread_ptr -> tx_thread_suspended_next =
ip_ptr -> nx_ip_raw_packet_suspension_list;
thread_ptr -> tx_thread_suspended_previous =
(ip_ptr -> nx_ip_raw_packet_suspension_list) -> tx_thread_suspended_previous;
((ip_ptr -> nx_ip_raw_packet_suspension_list) -> tx_thread_suspended_previous) -> tx_thread_suspended_next = thread_ptr;
(ip_ptr -> nx_ip_raw_packet_suspension_list) -> tx_thread_suspended_previous = thread_ptr;
}if (ip_ptr -> nx_ip_raw_packet_suspension_list) { ... }
else
{
/* ... */
ip_ptr -> nx_ip_raw_packet_suspension_list = thread_ptr;
thread_ptr -> tx_thread_suspended_next = thread_ptr;
thread_ptr -> tx_thread_suspended_previous = thread_ptr;
}else { ... }
ip_ptr -> nx_ip_raw_packet_suspended_count++;
thread_ptr -> tx_thread_state = TX_TCP_IP;
thread_ptr -> tx_thread_suspending = TX_TRUE;
_tx_thread_preempt_disable++;
thread_ptr -> tx_thread_timer.tx_timer_internal_remaining_ticks = wait_option;
TX_RESTORE
_tx_thread_system_suspend(thread_ptr);
NX_TRACE_EVENT_UPDATE(trace_event, trace_timestamp, NX_TRACE_IP_RAW_PACKET_RECEIVE, 0, *packet_ptr, 0, 0);
return(thread_ptr -> tx_thread_suspend_status);
}if (wait_option) { ... }
else
{
status = NX_NO_PACKET;
}else { ... }
}else { ... }
TX_RESTORE
return(status);
}{ ... }