Lines Matching refs:semaphore_ptr
75 UINT _tx_semaphore_create(TX_SEMAPHORE *semaphore_ptr, CHAR *name_ptr, ULONG initial_count) in _tx_semaphore_create() argument
85 TX_MEMSET(semaphore_ptr, 0, (sizeof(TX_SEMAPHORE))); in _tx_semaphore_create()
88 semaphore_ptr -> tx_semaphore_name = name_ptr; in _tx_semaphore_create()
89 semaphore_ptr -> tx_semaphore_count = initial_count; in _tx_semaphore_create()
95 semaphore_ptr -> tx_semaphore_id = TX_SEMAPHORE_ID; in _tx_semaphore_create()
103 _tx_semaphore_created_ptr = semaphore_ptr; in _tx_semaphore_create()
104 semaphore_ptr -> tx_semaphore_created_next = semaphore_ptr; in _tx_semaphore_create()
105 semaphore_ptr -> tx_semaphore_created_previous = semaphore_ptr; in _tx_semaphore_create()
115 next_semaphore -> tx_semaphore_created_previous = semaphore_ptr; in _tx_semaphore_create()
116 previous_semaphore -> tx_semaphore_created_next = semaphore_ptr; in _tx_semaphore_create()
119 semaphore_ptr -> tx_semaphore_created_previous = previous_semaphore; in _tx_semaphore_create()
120 semaphore_ptr -> tx_semaphore_created_next = next_semaphore; in _tx_semaphore_create()
127 TX_SEMAPHORE_CREATE_EXTENSION(semaphore_ptr) in _tx_semaphore_create()
130 …TX_TRACE_OBJECT_REGISTER(TX_TRACE_OBJECT_TYPE_SEMAPHORE, semaphore_ptr, name_ptr, initial_count, 0) in _tx_semaphore_create()
133 …TX_TRACE_IN_LINE_INSERT(TX_TRACE_SEMAPHORE_CREATE, semaphore_ptr, initial_count, TX_POINTER_TO_ULO… in _tx_semaphore_create()