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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
138
139
140
141
142
143
144
145
146
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
174
175
176
177
178
179
180
181
182
183
184
188
189
190
191
192
193
194
195
196
197
198
...
...
...
#define NX_SOURCE_CODE
#include "nx_api.h"
#include "nx_packet.h"
NX_CALLER_CHECKING_EXTERNS
...
...
UINT _nxe_packet_pool_create(NX_PACKET_POOL *pool_ptr, CHAR *name_ptr, ULONG payload_size,
VOID *pool_start, ULONG pool_size, UINT pool_control_block_size)
{
UINT status;
ULONG rounded_payload_size;
ULONG rounded_pool_size;
ULONG header_size;
UINT old_threshold = 0;
NX_PACKET_POOL *created_pool;
ULONG created_count;
CHAR *end_memory;
CHAR *created_end;
CHAR *payload_address;
VOID *rounded_pool_start;
TX_THREAD *current_thread;
if ((pool_ptr == NX_NULL) || (pool_start == NX_NULL) || (pool_control_block_size != (UINT)sizeof(NX_PACKET_POOL)))
{
return(NX_PTR_ERROR);
}if ((pool_ptr == NX_NULL) || (pool_start == NX_NULL) || (pool_control_block_size != (UINT)sizeof(NX_PACKET_POOL))) { ... }
rounded_pool_start = (VOID *)((((ALIGN_TYPE)pool_start + NX_PACKET_ALIGNMENT - 1) / NX_PACKET_ALIGNMENT) * NX_PACKET_ALIGNMENT);
rounded_pool_size = (ULONG)(((pool_size - ((ALIGN_TYPE)rounded_pool_start - (ALIGN_TYPE)pool_start)) / NX_PACKET_ALIGNMENT) * NX_PACKET_ALIGNMENT);
payload_address = (CHAR *)((ALIGN_TYPE)rounded_pool_start + sizeof(NX_PACKET));
payload_address = (CHAR *)((((ALIGN_TYPE)payload_address + NX_PACKET_ALIGNMENT - 1) / NX_PACKET_ALIGNMENT) * NX_PACKET_ALIGNMENT);
header_size = (ULONG)((ALIGN_TYPE)payload_address - (ALIGN_TYPE)rounded_pool_start);
rounded_payload_size = (ULONG)(((header_size + payload_size + NX_PACKET_ALIGNMENT - 1) / NX_PACKET_ALIGNMENT) * NX_PACKET_ALIGNMENT - header_size);
if ((pool_size <= NX_PACKET_ALIGNMENT) || (!payload_size) ||
((rounded_payload_size + header_size) > rounded_pool_size))
{
return(NX_SIZE_ERROR);
}if ((pool_size <= NX_PACKET_ALIGNMENT) || (!payload_size) || ((rounded_payload_size + header_size) > rounded_pool_size)) { ... }
end_memory = ((CHAR *)pool_start) + (pool_size - 1);
current_thread = tx_thread_identify();
if (current_thread)
{
tx_thread_preemption_change(current_thread, 0, &old_threshold);
}if (current_thread) { ... }
created_pool = _nx_packet_pool_created_ptr;
created_count = _nx_packet_pool_created_count;
while (created_count--)
{
created_end = created_pool -> nx_packet_pool_start + (created_pool -> nx_packet_pool_size - 1);
if ((pool_ptr == created_pool) ||
((pool_start >= (VOID *)created_pool -> nx_packet_pool_start) && (pool_start < (VOID *)created_end)) ||
((end_memory >= created_pool -> nx_packet_pool_start) && (end_memory < created_end)))
{
if (current_thread)
{
tx_thread_preemption_change(current_thread, old_threshold, &old_threshold);
}if (current_thread) { ... }
return(NX_PTR_ERROR);
}if ((pool_ptr == created_pool) || ((pool_start >= (VOID *)created_pool -> nx_packet_pool_start) && (pool_start < (VOID *)created_end)) || ((end_memory >= created_pool -> nx_packet_pool_start) && (end_memory < created_end))) { ... }
created_pool = created_pool -> nx_packet_pool_created_next;
}while (created_count--) { ... }
if (current_thread)
{
tx_thread_preemption_change(current_thread, old_threshold, &old_threshold);
}if (current_thread) { ... }
NX_INIT_AND_THREADS_CALLER_CHECKING
status = _nx_packet_pool_create(pool_ptr, name_ptr, payload_size, pool_start, pool_size);
return(status);
}{ ... }