Structure - Defines thread execution times information for tasks.
struct task_thread_times_info
{
       time_value_t         user_time;
       time_value_t       system_time;
};
typedef struct task_thread_times_info* task_thread_times_info_t;
The task_thread_times_info structure defines thread execution time statistics for tasks. The task_info function returns these times for a specified task. The thread_info function returns this information for a specific thread.
Functions: task_info, thread_info.
Data Structures: task_basic_info, thread_basic_info.