1
10
13
14
20
21
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
104
105
106
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
162
163
164
165
166
167
168
169
170
171
177
178
179
180
181
182
198
199
200
206
207
208
209
210
...
...
...
#define TX_SOURCE_CODE
#include "tx_api.h"
#include "tx_initialize.h"
#include "tx_thread.h"
#include "tx_timer.h"
#include "tx_semaphore.h"
5 includes
...
...
UINT _txe_semaphore_create(TX_SEMAPHORE *semaphore_ptr, CHAR *name_ptr, ULONG initial_count, UINT semaphore_control_block_size)
{
TX_INTERRUPT_SAVE_AREA
UINT status;
ULONG i;
TX_SEMAPHORE *next_semaphore;
#ifndef TX_TIMER_PROCESS_IN_ISR
TX_THREAD *thread_ptr;
#endif
status = TX_SUCCESS;
if (semaphore_ptr == TX_NULL)
{
status = TX_SEMAPHORE_ERROR;
}if (semaphore_ptr == TX_NULL) { ... }
else if (semaphore_control_block_size != (sizeof(TX_SEMAPHORE)))
{
status = TX_SEMAPHORE_ERROR;
}else if (semaphore_control_block_size != (sizeof(TX_SEMAPHORE))) { ... }
else
{
TX_DISABLE
_tx_thread_preempt_disable++;
TX_RESTORE
next_semaphore = _tx_semaphore_created_ptr;
for (i = ((ULONG) 0); i < _tx_semaphore_created_count; i++)
{
if (semaphore_ptr == next_semaphore)
{
break;
}if (semaphore_ptr == next_semaphore) { ... }
else
{
next_semaphore = next_semaphore -> tx_semaphore_created_next;
}else { ... }
}for (i = ((ULONG) 0); i < _tx_semaphore_created_count; i++) { ... }
TX_DISABLE
_tx_thread_preempt_disable--;
TX_RESTORE
_tx_thread_system_preempt_check();
if (semaphore_ptr == next_semaphore)
{
status = TX_SEMAPHORE_ERROR;
}if (semaphore_ptr == next_semaphore) { ... }
#ifndef TX_TIMER_PROCESS_IN_ISR
else
{
TX_THREAD_GET_CURRENT(thread_ptr)
if (thread_ptr == &_tx_timer_thread)
{
status = TX_CALLER_ERROR;
}if (thread_ptr == &_tx_timer_thread) { ... }
}else { ... }
/* ... */#endif
}else { ... }
if (status == TX_SUCCESS)
{
if (TX_THREAD_GET_SYSTEM_STATE() != ((ULONG) 0))
{
if (TX_THREAD_GET_SYSTEM_STATE() < TX_INITIALIZE_IN_PROGRESS)
{
status = TX_CALLER_ERROR;
}if (TX_THREAD_GET_SYSTEM_STATE() < TX_INITIALIZE_IN_PROGRESS) { ... }
}if (TX_THREAD_GET_SYSTEM_STATE() != ((ULONG) 0)) { ... }
}if (status == TX_SUCCESS) { ... }
if (status == TX_SUCCESS)
{
status = _tx_semaphore_create(semaphore_ptr, name_ptr, initial_count);
}if (status == TX_SUCCESS) { ... }
return(status);
}{ ... }