Home
last modified time | relevance | path

Searched refs:TX_INHERIT (Results 1 – 22 of 22) sorted by relevance

/ThreadX-v6.4.1/test/smp/regression/
Dthreadx_mutex_basic_test.c261 status = tx_mutex_create(&mutex_2, "mutex 2", TX_INHERIT); in test_application_define()
272 status = tx_mutex_create(&mutex_3, "mutex 3", TX_INHERIT); in test_application_define()
314 status = tx_mutex_create(&mutex_memory.mutex, "mutex memory", TX_INHERIT); in thread_0_entry()
336 status = tx_mutex_create(TX_NULL, "mutex 2", TX_INHERIT); in thread_0_entry()
348 status = _txe_mutex_create(&mutex_5, "mutex 5", TX_INHERIT, (sizeof(TX_MUTEX)+1)); in thread_0_entry()
360 status = tx_mutex_create(&mutex_2, "mutex 2", TX_INHERIT); in thread_0_entry()
Dthreadx_mutex_priority_inheritance_test.c184 status = tx_mutex_create(&mutex_0, "mutex 0", TX_INHERIT); in test_application_define()
195 status = tx_mutex_create(&mutex_1, "mutex 1", TX_INHERIT); in test_application_define()
206 status = tx_mutex_create(&mutex_2, "mutex 2", TX_INHERIT); in test_application_define()
217 status = tx_mutex_create(&mutex_3, "mutex 3", TX_INHERIT); in test_application_define()
Dthreadx_mutex_nested_priority_inheritance_test.c170 status += tx_mutex_create(&mutex_1, "mutex 1", TX_INHERIT); in test_application_define()
171 status += tx_mutex_create(&mutex_2, "mutex 2", TX_INHERIT); in test_application_define()
172 status += tx_mutex_create(&mutex_3, "mutex 3", TX_INHERIT); in test_application_define()
Dthreadx_mutex_information_test.c96 status = tx_mutex_create(&mutex_2, "mutex 2", TX_INHERIT); in test_application_define()
107 status = tx_mutex_create(&mutex_3, "mutex 3", TX_INHERIT); in test_application_define()
Dthreadx_thread_preemption_change_test.c95 status = tx_mutex_create(&mutex_0, "mutex 0", TX_INHERIT); in test_application_define()
Dthreadx_mutex_suspension_timeout_test.c178 status += tx_mutex_create(&mutex_1, "mutex 1", TX_INHERIT); in test_application_define()
Dtestcontrol.c636 test_mutex_from_init = tx_mutex_create(&init_mutex, "init mutex", TX_INHERIT); in tx_application_define()
641 test_mutex_from_init = tx_mutex_create(&init_mutex_inherit, "init mutex", TX_INHERIT); in tx_application_define()
/ThreadX-v6.4.1/test/tx/regression/
Dthreadx_mutex_basic_test.c261 status = tx_mutex_create(&mutex_2, "mutex 2", TX_INHERIT); in test_application_define()
272 status = tx_mutex_create(&mutex_3, "mutex 3", TX_INHERIT); in test_application_define()
314 status = tx_mutex_create(&mutex_memory.mutex, "mutex memory", TX_INHERIT); in thread_0_entry()
336 status = tx_mutex_create(TX_NULL, "mutex 2", TX_INHERIT); in thread_0_entry()
348 status = _txe_mutex_create(&mutex_5, "mutex 5", TX_INHERIT, (sizeof(TX_MUTEX)+1)); in thread_0_entry()
360 status = tx_mutex_create(&mutex_2, "mutex 2", TX_INHERIT); in thread_0_entry()
Dthreadx_mutex_priority_inheritance_test.c184 status = tx_mutex_create(&mutex_0, "mutex 0", TX_INHERIT); in test_application_define()
195 status = tx_mutex_create(&mutex_1, "mutex 1", TX_INHERIT); in test_application_define()
206 status = tx_mutex_create(&mutex_2, "mutex 2", TX_INHERIT); in test_application_define()
217 status = tx_mutex_create(&mutex_3, "mutex 3", TX_INHERIT); in test_application_define()
Dthreadx_mutex_nested_priority_inheritance_test.c170 status += tx_mutex_create(&mutex_1, "mutex 1", TX_INHERIT); in test_application_define()
171 status += tx_mutex_create(&mutex_2, "mutex 2", TX_INHERIT); in test_application_define()
172 status += tx_mutex_create(&mutex_3, "mutex 3", TX_INHERIT); in test_application_define()
Dthreadx_mutex_information_test.c96 status = tx_mutex_create(&mutex_2, "mutex 2", TX_INHERIT); in test_application_define()
107 status = tx_mutex_create(&mutex_3, "mutex 3", TX_INHERIT); in test_application_define()
Dthreadx_thread_preemption_change_test.c95 status = tx_mutex_create(&mutex_0, "mutex 0", TX_INHERIT); in test_application_define()
Dthreadx_mutex_suspension_timeout_test.c130 status += tx_mutex_create(&mutex_1, "mutex 1", TX_INHERIT); in test_application_define()
Dtestcontrol.c522 test_mutex_from_init = tx_mutex_create(&init_mutex, "init mutex", TX_INHERIT); in tx_application_define()
527 test_mutex_from_init = tx_mutex_create(&init_mutex_inherit, "init mutex", TX_INHERIT); in tx_application_define()
/ThreadX-v6.4.1/ports/xtensa/xcc/src/
Dxtensa_overlay_os_hook.c71 tx_mutex_create (&xt_overlay_mutex, "xt_overlay_lock", TX_INHERIT); in xt_overlay_init_os()
Dtx_clib_lock.c173 tx_mutex_create (lock, "Clib lock", TX_INHERIT); in _Mtxinit()
278 tx_mutex_create (&clib_lock_mutex, "Clib lock", TX_INHERIT); in _tx_clib_init()
/ThreadX-v6.4.1/utility/rtos_compatibility_layers/posix/
Dpx_mx_init.c118 status = tx_mutex_create(mutex_ptr, "PMTX", TX_INHERIT); in pthread_mutex_init()
/ThreadX-v6.4.1/common_smp/src/
Dtxe_mutex_create.c166 if (inherit != TX_INHERIT) in _txe_mutex_create()
/ThreadX-v6.4.1/common/src/
Dtxe_mutex_create.c166 if (inherit != TX_INHERIT) in _txe_mutex_create()
/ThreadX-v6.4.1/utility/rtos_compatibility_layers/FreeRTOS/
Dtx_freertos.c1225 ret = tx_mutex_create(&p_sem->mutex, "", TX_INHERIT); in xSemaphoreCreateRecursiveMutex()
1252 ret = tx_mutex_create(&pxMutexBuffer->mutex, "", TX_INHERIT); in xSemaphoreCreateRecursiveMutexStatic()
/ThreadX-v6.4.1/common_smp/inc/
Dtx_api.h176 #define TX_INHERIT ((UINT) 1) macro
/ThreadX-v6.4.1/common/inc/
Dtx_api.h175 #define TX_INHERIT ((UINT) 1) macro