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
102
103
104
110
111
112
113
114
115
116
117
118
119
120
121
122
124
125
126
131
132
133
138
139
140
145
146
147
152
153
154
159
160
161
166
167
168
169
170
171
172
173
174
175
176
177
178
184
190
196
202
208
214
220
226
227
228
229
230
231
...
...
...
#define TX_SOURCE_CODE
#include "tx_api.h"
#include "tx_queue.h"
#ifdef TX_QUEUE_ENABLE_PERFORMANCE_INFO
#include "tx_trace.h"
#endif
...
...
UINT _tx_queue_performance_info_get(TX_QUEUE *queue_ptr, ULONG *messages_sent, ULONG *messages_received,
ULONG *empty_suspensions, ULONG *full_suspensions, ULONG *full_errors, ULONG *timeouts)
{
#ifdef TX_QUEUE_ENABLE_PERFORMANCE_INFO
TX_INTERRUPT_SAVE_AREA
UINT status;
if (queue_ptr == TX_NULL)
{
status = TX_PTR_ERROR;
}if (queue_ptr == TX_NULL) { ... }
else if (queue_ptr -> tx_queue_id != TX_QUEUE_ID)
{
status = TX_PTR_ERROR;
}else if (queue_ptr -> tx_queue_id != TX_QUEUE_ID) { ... }
else
{
TX_DISABLE
TX_TRACE_IN_LINE_INSERT(TX_TRACE_QUEUE_PERFORMANCE_INFO_GET, queue_ptr, 0, 0, 0, TX_TRACE_QUEUE_EVENTS)
TX_EL_QUEUE_PERFORMANCE_INFO_GET_INSERT
/* ... */
if (messages_sent != TX_NULL)
{
*messages_sent = queue_ptr -> tx_queue_performance_messages_sent_count;
}if (messages_sent != TX_NULL) { ... }
if (messages_received != TX_NULL)
{
*messages_received = queue_ptr -> tx_queue_performance_messages_received_count;
}if (messages_received != TX_NULL) { ... }
if (empty_suspensions != TX_NULL)
{
*empty_suspensions = queue_ptr -> tx_queue_performance_empty_suspension_count;
}if (empty_suspensions != TX_NULL) { ... }
if (full_suspensions != TX_NULL)
{
*full_suspensions = queue_ptr -> tx_queue_performance_full_suspension_count;
}if (full_suspensions != TX_NULL) { ... }
if (full_errors != TX_NULL)
{
*full_errors = queue_ptr -> tx_queue_performance_full_error_count;
}if (full_errors != TX_NULL) { ... }
if (timeouts != TX_NULL)
{
*timeouts = queue_ptr -> tx_queue_performance_timeout_count;
}if (timeouts != TX_NULL) { ... }
TX_RESTORE
status = TX_SUCCESS;
}else { ... }
/* ... */#else
UINT status;
if (queue_ptr != TX_NULL)
{
status = TX_FEATURE_NOT_ENABLED;
}if (queue_ptr != TX_NULL) { ... }
else if (messages_sent != TX_NULL)
{
status = TX_FEATURE_NOT_ENABLED;
}else if (messages_sent != TX_NULL) { ... }
else if (messages_received != TX_NULL)
{
status = TX_FEATURE_NOT_ENABLED;
}else if (messages_received != TX_NULL) { ... }
else if (empty_suspensions != TX_NULL)
{
status = TX_FEATURE_NOT_ENABLED;
}else if (empty_suspensions != TX_NULL) { ... }
else if (full_suspensions != TX_NULL)
{
status = TX_FEATURE_NOT_ENABLED;
}else if (full_suspensions != TX_NULL) { ... }
else if (full_errors != TX_NULL)
{
status = TX_FEATURE_NOT_ENABLED;
}else if (full_errors != TX_NULL) { ... }
else if (timeouts != TX_NULL)
{
status = TX_FEATURE_NOT_ENABLED;
}else if (timeouts != TX_NULL) { ... }
else
{
status = TX_FEATURE_NOT_ENABLED;
}else { ... }
/* ... */#endif
return(status);
}{ ... }