Home
last modified time | relevance | path

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

/ThreadX-v6.3.0/utility/execution_profile_kit/
Dtx_execution_profile.c81 EXECUTION_TIME _tx_execution_thread_time_total; variable
361 new_total_time = _tx_execution_thread_time_total + delta_time; in _tx_execution_thread_exit()
364 if (new_total_time < _tx_execution_thread_time_total) in _tx_execution_thread_exit()
372 _tx_execution_thread_time_total = new_total_time; in _tx_execution_thread_exit()
501 new_total_time = _tx_execution_thread_time_total + delta_time; in _tx_execution_isr_enter()
504 if (new_total_time < _tx_execution_thread_time_total) in _tx_execution_isr_enter()
512 _tx_execution_thread_time_total = new_total_time; in _tx_execution_isr_enter()
792 _tx_execution_thread_time_total = 0; in _tx_execution_thread_total_time_reset() local
997 *total_time = _tx_execution_thread_time_total; in _tx_execution_thread_total_time_get()
/ThreadX-v6.3.0/utility/execution_profile_kit/smp_version/
Dtx_execution_profile.c79 EXECUTION_TIME _tx_execution_thread_time_total[TX_THREAD_SMP_MAX_CORES]; variable
308 new_total_time = _tx_execution_thread_time_total[core] + delta_time; in _tx_execution_thread_exit()
311 if (new_total_time < _tx_execution_thread_time_total[core]) in _tx_execution_thread_exit()
319 _tx_execution_thread_time_total[core] = new_total_time; in _tx_execution_thread_exit()
441 new_total_time = _tx_execution_thread_time_total[core] + delta_time; in _tx_execution_isr_enter()
444 if (new_total_time < _tx_execution_thread_time_total[core]) in _tx_execution_isr_enter()
452 _tx_execution_thread_time_total[core] = new_total_time; in _tx_execution_isr_enter()
727 _tx_execution_thread_time_total[core] = 0; in _tx_execution_thread_total_time_reset()
971 *total_time = _tx_execution_thread_time_total[core]; in _tx_execution_thread_total_time_get()
1159 *total_time = _tx_execution_thread_time_total[core]; in _tx_execution_core_thread_total_time_get()