Searched refs:basic_thread_info (Results 1 – 1 of 1) sorted by relevance
113 thread_basic_info_data_t basic_thread_info; in observe_thread_user_time() local117 kr = thread_info(port, THREAD_BASIC_INFO, (thread_info_t)&basic_thread_info, &count); in observe_thread_user_time()119 before_user_us = (uint64_t)basic_thread_info.user_time.seconds * USEC_PER_SEC + in observe_thread_user_time()120 (uint64_t)basic_thread_info.user_time.microseconds; in observe_thread_user_time()124 kr = thread_info(port, THREAD_BASIC_INFO, (thread_info_t)&basic_thread_info, &count); in observe_thread_user_time()126 after_user_us = (uint64_t)basic_thread_info.user_time.seconds * USEC_PER_SEC + in observe_thread_user_time()127 (uint64_t)basic_thread_info.user_time.microseconds; in observe_thread_user_time()