aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorFlavio Cruz <flaviocruz@gmail.com>2023-05-16 23:01:01 -0400
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2023-05-17 19:25:02 +0200
commit25a3748b9028b5207e419fc49b6178b1b6405fa8 (patch)
tree5e0563f9fa8cdaa9b416023fc2ade858c641536b /include
parentb16f119edb80e913fdd60fc3bf381afb504509fd (diff)
downloadgnumach-25a3748b9028b5207e419fc49b6178b1b6405fa8.tar.gz
gnumach-25a3748b9028b5207e419fc49b6178b1b6405fa8.tar.bz2
gnumach-25a3748b9028b5207e419fc49b6178b1b6405fa8.zip
Fix task_info for TASK_THREAD_TIMES_INFO.
We are checking for the existence of time_value64_t but we didn't add that to the task_thread_times_info structure. Message-Id: <ZGRDbS0XIm1fJwkG@jupiter.tail36e24.ts.net>
Diffstat (limited to 'include')
-rw-r--r--include/mach/task_info.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/mach/task_info.h b/include/mach/task_info.h
index 2631b04e..0e048c5e 100644
--- a/include/mach/task_info.h
+++ b/include/mach/task_info.h
@@ -97,10 +97,16 @@ typedef struct task_events_info *task_events_info_t;
only accurate if suspended */
struct task_thread_times_info {
+ /* Deprecated, please use user_time64 */
rpc_time_value_t user_time; /* total user run time for
live threads */
+ /* Deprecated, please use system_time64 */
rpc_time_value_t system_time; /* total system run time for
live threads */
+ time_value64_t user_time64; /* total user run time for
+ live threads */
+ time_value64_t system_time64; /* total system run time for
+ live threads */
};
typedef struct task_thread_times_info task_thread_times_info_data_t;