Home
last modified time | relevance | path

Searched refs:_tx_execution_thread_time_total (Results 1 – 2 of 2) sorted by relevance

/ThreadX-v6.4.1/utility/execution_profile_kit/
Dtx_execution_profile.c80 EXECUTION_TIME _tx_execution_thread_time_total; variable
360 new_total_time = _tx_execution_thread_time_total + delta_time; in _tx_execution_thread_exit()
363 if (new_total_time < _tx_execution_thread_time_total) in _tx_execution_thread_exit()
371 _tx_execution_thread_time_total = new_total_time; in _tx_execution_thread_exit()
500 new_total_time = _tx_execution_thread_time_total + delta_time; in _tx_execution_isr_enter()
503 if (new_total_time < _tx_execution_thread_time_total) in _tx_execution_isr_enter()
511 _tx_execution_thread_time_total = new_total_time; in _tx_execution_isr_enter()
791 _tx_execution_thread_time_total = 0; in _tx_execution_thread_total_time_reset() local
996 *total_time = _tx_execution_thread_time_total; in _tx_execution_thread_total_time_get()
/ThreadX-v6.4.1/utility/execution_profile_kit/smp_version/
Dtx_execution_profile.c78 EXECUTION_TIME _tx_execution_thread_time_total[TX_THREAD_SMP_MAX_CORES]; variable
307 new_total_time = _tx_execution_thread_time_total[core] + delta_time; in _tx_execution_thread_exit()
310 if (new_total_time < _tx_execution_thread_time_total[core]) in _tx_execution_thread_exit()
318 _tx_execution_thread_time_total[core] = new_total_time; in _tx_execution_thread_exit()
440 new_total_time = _tx_execution_thread_time_total[core] + delta_time; in _tx_execution_isr_enter()
443 if (new_total_time < _tx_execution_thread_time_total[core]) in _tx_execution_isr_enter()
451 _tx_execution_thread_time_total[core] = new_total_time; in _tx_execution_isr_enter()
726 _tx_execution_thread_time_total[core] = 0; in _tx_execution_thread_total_time_reset()
970 *total_time = _tx_execution_thread_time_total[core]; in _tx_execution_thread_total_time_get()
1158 *total_time = _tx_execution_thread_time_total[core]; in _tx_execution_core_thread_total_time_get()