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
88
89
90
91
93
94
95
96
97
98
99
100
106
107
108
114
120
121
122
123
124
125
...
...
...
#define TX_SOURCE_CODE
#include "tx_api.h"
#include "tx_block_pool.h"
...
...
UINT _txe_block_release(VOID *block_ptr)
{
UINT status;
TX_BLOCK_POOL *pool_ptr;
UCHAR **indirect_ptr;
UCHAR *work_ptr;
if (block_ptr == TX_NULL)
{
status = TX_PTR_ERROR;
}if (block_ptr == TX_NULL) { ... }
else
{
/* ... */
work_ptr = TX_VOID_TO_UCHAR_POINTER_CONVERT(block_ptr);
work_ptr = TX_UCHAR_POINTER_SUB(work_ptr, (sizeof(UCHAR *)));
indirect_ptr = TX_UCHAR_TO_INDIRECT_UCHAR_POINTER_CONVERT(work_ptr);
work_ptr = *indirect_ptr;
pool_ptr = TX_UCHAR_TO_BLOCK_POOL_POINTER_CONVERT(work_ptr);
if (pool_ptr == TX_NULL)
{
status = TX_PTR_ERROR;
}if (pool_ptr == TX_NULL) { ... }
else if (pool_ptr -> tx_block_pool_id != TX_BLOCK_POOL_ID)
{
status = TX_PTR_ERROR;
}else if (pool_ptr -> tx_block_pool_id != TX_BLOCK_POOL_ID) { ... }
else
{
status = _tx_block_release(block_ptr);
}else { ... }
}else { ... }
return(status);
}{ ... }