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
107
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
157
158
159
160
161
162
163
164
165
166
167
168
169
...
...
...
#define TX_SOURCE_CODE
#include "tx_api.h"
#include "tx_trace.h"
#include "tx_timer.h"
...
...
UINT _tx_timer_create(TX_TIMER *timer_ptr, CHAR *name_ptr,
VOID (*expiration_function)(ULONG id), ULONG expiration_input,
ULONG initial_ticks, ULONG reschedule_ticks, UINT auto_activate)
{
TX_INTERRUPT_SAVE_AREA
TX_TIMER *next_timer;
TX_TIMER *previous_timer;
TX_MEMSET(timer_ptr, 0, (sizeof(TX_TIMER)));
timer_ptr -> tx_timer_name = name_ptr;
timer_ptr -> tx_timer_internal.tx_timer_internal_remaining_ticks = initial_ticks;
timer_ptr -> tx_timer_internal.tx_timer_internal_re_initialize_ticks = reschedule_ticks;
timer_ptr -> tx_timer_internal.tx_timer_internal_timeout_function = expiration_function;
timer_ptr -> tx_timer_internal.tx_timer_internal_timeout_param = expiration_input;
TX_DISABLE
timer_ptr -> tx_timer_id = TX_TIMER_ID;
/* ... */
if (_tx_timer_created_count == TX_EMPTY)
{
_tx_timer_created_ptr = timer_ptr;
timer_ptr -> tx_timer_created_next = timer_ptr;
timer_ptr -> tx_timer_created_previous = timer_ptr;
}if (_tx_timer_created_count == TX_EMPTY) { ... }
else
{
next_timer = _tx_timer_created_ptr;
previous_timer = next_timer -> tx_timer_created_previous;
next_timer -> tx_timer_created_previous = timer_ptr;
previous_timer -> tx_timer_created_next = timer_ptr;
timer_ptr -> tx_timer_created_previous = previous_timer;
timer_ptr -> tx_timer_created_next = next_timer;
}else { ... }
_tx_timer_created_count++;
TX_TIMER_CREATE_EXTENSION(timer_ptr)
TX_TRACE_OBJECT_REGISTER(TX_TRACE_OBJECT_TYPE_TIMER, timer_ptr, name_ptr, initial_ticks, reschedule_ticks)
TX_TRACE_IN_LINE_INSERT(TX_TRACE_TIMER_CREATE, timer_ptr, initial_ticks, reschedule_ticks, auto_activate, TX_TRACE_TIMER_EVENTS)
TX_EL_TIMER_CREATE_INSERT
if (auto_activate == TX_AUTO_ACTIVATE)
{
#ifdef TX_TIMER_ENABLE_PERFORMANCE_INFO
_tx_timer_performance_activate_count++;
timer_ptr -> tx_timer_performance_activate_count++;/* ... */
#endif
_tx_timer_system_activate(&(timer_ptr -> tx_timer_internal));
}if (auto_activate == TX_AUTO_ACTIVATE) { ... }
TX_RESTORE
return(TX_SUCCESS);
}{ ... }