Home
last modified time | relevance | path

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

/ThreadX-v6.4.1/utility/execution_profile_kit/
Dtx_execution_profile.c200 EXECUTION_TIME new_total_time; in _tx_execution_thread_enter() local
238 new_total_time = total_time + delta_time; in _tx_execution_thread_enter()
241 if (new_total_time < total_time) in _tx_execution_thread_enter()
245 new_total_time = (EXECUTION_TIME) TX_EXECUTION_MAX_TIME_SOURCE; in _tx_execution_thread_enter()
249 _tx_execution_idle_time_total = new_total_time; in _tx_execution_thread_enter()
302 EXECUTION_TIME new_total_time; in _tx_execution_thread_exit() local
346 new_total_time = total_time + delta_time; in _tx_execution_thread_exit()
349 if (new_total_time < total_time) in _tx_execution_thread_exit()
353 new_total_time = (EXECUTION_TIME) TX_EXECUTION_MAX_TIME_SOURCE; in _tx_execution_thread_exit()
357 thread_ptr -> tx_thread_execution_time_total = new_total_time; in _tx_execution_thread_exit()
[all …]
/ThreadX-v6.4.1/utility/execution_profile_kit/smp_version/
Dtx_execution_profile.c142 EXECUTION_TIME new_total_time; in _tx_execution_thread_enter() local
184 new_total_time = total_time + delta_time; in _tx_execution_thread_enter()
187 if (new_total_time < total_time) in _tx_execution_thread_enter()
191 new_total_time = (EXECUTION_TIME) TX_EXECUTION_MAX_TIME_SOURCE; in _tx_execution_thread_enter()
195 _tx_execution_idle_time_total[core] = new_total_time; in _tx_execution_thread_enter()
245 EXECUTION_TIME new_total_time; in _tx_execution_thread_exit() local
293 new_total_time = total_time + delta_time; in _tx_execution_thread_exit()
296 if (new_total_time < total_time) in _tx_execution_thread_exit()
300 new_total_time = (EXECUTION_TIME) TX_EXECUTION_MAX_TIME_SOURCE; in _tx_execution_thread_exit()
304 thread_ptr -> tx_thread_execution_time_total = new_total_time; in _tx_execution_thread_exit()
[all …]