Home
last modified time | relevance | path

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

/ThreadX-v6.3.0/utility/execution_profile_kit/
Dtx_execution_profile.c197 EXECUTION_TIME_SOURCE_TYPE last_start_time; in _tx_execution_thread_enter() local
215 last_start_time = _tx_execution_idle_time_last_start; in _tx_execution_thread_enter()
222 if (current_time >= last_start_time) in _tx_execution_thread_enter()
226 delta_time = (EXECUTION_TIME) (current_time - last_start_time); in _tx_execution_thread_enter()
232 …rent_time + ((((EXECUTION_TIME_SOURCE_TYPE) TX_EXECUTION_MAX_TIME_SOURCE) + 1) - last_start_time)); in _tx_execution_thread_enter()
304 EXECUTION_TIME_SOURCE_TYPE last_start_time; in _tx_execution_thread_exit() local
320 last_start_time = thread_ptr -> tx_thread_execution_time_last_start; in _tx_execution_thread_exit()
323 if (last_start_time) in _tx_execution_thread_exit()
330 if (current_time >= last_start_time) in _tx_execution_thread_exit()
334 delta_time = (EXECUTION_TIME) (current_time - last_start_time); in _tx_execution_thread_exit()
[all …]
/ThreadX-v6.3.0/utility/execution_profile_kit/smp_version/
Dtx_execution_profile.c139 EXECUTION_TIME_SOURCE_TYPE last_start_time; in _tx_execution_thread_enter() local
161 last_start_time = _tx_execution_idle_time_last_start[core]; in _tx_execution_thread_enter()
164 if (last_start_time) in _tx_execution_thread_enter()
168 if (current_time >= last_start_time) in _tx_execution_thread_enter()
172 delta_time = (EXECUTION_TIME) (current_time - last_start_time); in _tx_execution_thread_enter()
178 …) (current_time + (((EXECUTION_TIME_SOURCE_TYPE) TX_EXECUTION_MAX_TIME_SOURCE) - last_start_time)); in _tx_execution_thread_enter()
247 EXECUTION_TIME_SOURCE_TYPE last_start_time; in _tx_execution_thread_exit() local
267 last_start_time = thread_ptr -> tx_thread_execution_time_last_start; in _tx_execution_thread_exit()
270 if (last_start_time) in _tx_execution_thread_exit()
277 if (current_time >= last_start_time) in _tx_execution_thread_exit()
[all …]