diff options
-rw-r--r-- | include/mach/task_info.h | 1 | ||||
-rw-r--r-- | include/mach/thread_info.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/mach/task_info.h b/include/mach/task_info.h index fdcbeb1..5607178 100644 --- a/include/mach/task_info.h +++ b/include/mach/task_info.h @@ -60,6 +60,7 @@ struct task_basic_info { terminated threads */ time_value_t system_time; /* total system run time for terminated threads */ + time_value_t creation_time; /* creation time stamp */ }; typedef struct task_basic_info task_basic_info_data_t; diff --git a/include/mach/thread_info.h b/include/mach/thread_info.h index 2c79829..60e8ba7 100644 --- a/include/mach/thread_info.h +++ b/include/mach/thread_info.h @@ -65,6 +65,7 @@ struct thread_basic_info { integer_t suspend_count; /* suspend count for thread */ integer_t sleep_time; /* number of seconds that thread has been sleeping */ + time_value_t creation_time; /* time stamp of creation */ }; typedef struct thread_basic_info thread_basic_info_data_t; |