Home
last modified time | relevance | path

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

/ThreadX-v6.3.0/utility/execution_profile_kit/
Dtx_execution_profile.c201 EXECUTION_TIME new_total_time; in _tx_execution_thread_enter() local
239 new_total_time = total_time + delta_time; in _tx_execution_thread_enter()
242 if (new_total_time < total_time) in _tx_execution_thread_enter()
246 new_total_time = (EXECUTION_TIME) TX_EXECUTION_MAX_TIME_SOURCE; in _tx_execution_thread_enter()
250 _tx_execution_idle_time_total = new_total_time; in _tx_execution_thread_enter()
303 EXECUTION_TIME new_total_time; in _tx_execution_thread_exit() local
347 new_total_time = total_time + delta_time; in _tx_execution_thread_exit()
350 if (new_total_time < total_time) in _tx_execution_thread_exit()
354 new_total_time = (EXECUTION_TIME) TX_EXECUTION_MAX_TIME_SOURCE; in _tx_execution_thread_exit()
358 thread_ptr -> tx_thread_execution_time_total = new_total_time; in _tx_execution_thread_exit()
[all …]
/ThreadX-v6.3.0/utility/execution_profile_kit/smp_version/
Dtx_execution_profile.c143 EXECUTION_TIME new_total_time; in _tx_execution_thread_enter() local
185 new_total_time = total_time + delta_time; in _tx_execution_thread_enter()
188 if (new_total_time < total_time) in _tx_execution_thread_enter()
192 new_total_time = (EXECUTION_TIME) TX_EXECUTION_MAX_TIME_SOURCE; in _tx_execution_thread_enter()
196 _tx_execution_idle_time_total[core] = new_total_time; in _tx_execution_thread_enter()
246 EXECUTION_TIME new_total_time; in _tx_execution_thread_exit() local
294 new_total_time = total_time + delta_time; in _tx_execution_thread_exit()
297 if (new_total_time < total_time) in _tx_execution_thread_exit()
301 new_total_time = (EXECUTION_TIME) TX_EXECUTION_MAX_TIME_SOURCE; in _tx_execution_thread_exit()
305 thread_ptr -> tx_thread_execution_time_total = new_total_time; in _tx_execution_thread_exit()
[all …]