/ThreadX-v6.4.1/test/smp/regression/ |
D | threadx_mutex_basic_test.c | 261 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()
|
D | threadx_mutex_priority_inheritance_test.c | 184 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()
|
D | threadx_mutex_nested_priority_inheritance_test.c | 170 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()
|
D | threadx_mutex_information_test.c | 96 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()
|
D | threadx_thread_preemption_change_test.c | 95 status = tx_mutex_create(&mutex_0, "mutex 0", TX_INHERIT); in test_application_define()
|
D | threadx_mutex_suspension_timeout_test.c | 178 status += tx_mutex_create(&mutex_1, "mutex 1", TX_INHERIT); in test_application_define()
|
D | testcontrol.c | 636 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/ |
D | threadx_mutex_basic_test.c | 261 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()
|
D | threadx_mutex_priority_inheritance_test.c | 184 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()
|
D | threadx_mutex_nested_priority_inheritance_test.c | 170 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()
|
D | threadx_mutex_information_test.c | 96 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()
|
D | threadx_thread_preemption_change_test.c | 95 status = tx_mutex_create(&mutex_0, "mutex 0", TX_INHERIT); in test_application_define()
|
D | threadx_mutex_suspension_timeout_test.c | 130 status += tx_mutex_create(&mutex_1, "mutex 1", TX_INHERIT); in test_application_define()
|
D | testcontrol.c | 522 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/ |
D | xtensa_overlay_os_hook.c | 71 tx_mutex_create (&xt_overlay_mutex, "xt_overlay_lock", TX_INHERIT); in xt_overlay_init_os()
|
D | tx_clib_lock.c | 173 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/ |
D | px_mx_init.c | 118 status = tx_mutex_create(mutex_ptr, "PMTX", TX_INHERIT); in pthread_mutex_init()
|
/ThreadX-v6.4.1/common_smp/src/ |
D | txe_mutex_create.c | 166 if (inherit != TX_INHERIT) in _txe_mutex_create()
|
/ThreadX-v6.4.1/common/src/ |
D | txe_mutex_create.c | 166 if (inherit != TX_INHERIT) in _txe_mutex_create()
|
/ThreadX-v6.4.1/utility/rtos_compatibility_layers/FreeRTOS/ |
D | tx_freertos.c | 1225 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/ |
D | tx_api.h | 176 #define TX_INHERIT ((UINT) 1) macro
|
/ThreadX-v6.4.1/common/inc/ |
D | tx_api.h | 175 #define TX_INHERIT ((UINT) 1) macro
|