Home
last modified time | relevance | path

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

/ThreadX-v6.4.1/utility/execution_profile_kit/
Dtx_execution_profile.c196 EXECUTION_TIME_SOURCE_TYPE last_start_time; in _tx_execution_thread_enter() local
214 last_start_time = _tx_execution_idle_time_last_start; in _tx_execution_thread_enter()
221 if (current_time >= last_start_time) in _tx_execution_thread_enter()
225 delta_time = (EXECUTION_TIME) (current_time - last_start_time); in _tx_execution_thread_enter()
231 …rent_time + ((((EXECUTION_TIME_SOURCE_TYPE) TX_EXECUTION_MAX_TIME_SOURCE) + 1) - last_start_time)); in _tx_execution_thread_enter()
303 EXECUTION_TIME_SOURCE_TYPE last_start_time; in _tx_execution_thread_exit() local
319 last_start_time = thread_ptr -> tx_thread_execution_time_last_start; in _tx_execution_thread_exit()
322 if (last_start_time) in _tx_execution_thread_exit()
329 if (current_time >= last_start_time) in _tx_execution_thread_exit()
333 delta_time = (EXECUTION_TIME) (current_time - last_start_time); in _tx_execution_thread_exit()
[all …]
/ThreadX-v6.4.1/utility/execution_profile_kit/smp_version/
Dtx_execution_profile.c138 EXECUTION_TIME_SOURCE_TYPE last_start_time; in _tx_execution_thread_enter() local
160 last_start_time = _tx_execution_idle_time_last_start[core]; in _tx_execution_thread_enter()
163 if (last_start_time) in _tx_execution_thread_enter()
167 if (current_time >= last_start_time) in _tx_execution_thread_enter()
171 delta_time = (EXECUTION_TIME) (current_time - last_start_time); in _tx_execution_thread_enter()
177 …) (current_time + (((EXECUTION_TIME_SOURCE_TYPE) TX_EXECUTION_MAX_TIME_SOURCE) - last_start_time)); in _tx_execution_thread_enter()
246 EXECUTION_TIME_SOURCE_TYPE last_start_time; in _tx_execution_thread_exit() local
266 last_start_time = thread_ptr -> tx_thread_execution_time_last_start; in _tx_execution_thread_exit()
269 if (last_start_time) in _tx_execution_thread_exit()
276 if (current_time >= last_start_time) in _tx_execution_thread_exit()
[all …]