Searched refs:basic_thread_info (Results 1 – 1 of 1) sorted by relevance
114 thread_basic_info_data_t basic_thread_info; in observe_thread_user_time() local118 kr = thread_info(port, THREAD_BASIC_INFO, (thread_info_t)&basic_thread_info, &count); in observe_thread_user_time()120 before_user_us = (uint64_t)basic_thread_info.user_time.seconds * USEC_PER_SEC + in observe_thread_user_time()121 (uint64_t)basic_thread_info.user_time.microseconds; in observe_thread_user_time()125 kr = thread_info(port, THREAD_BASIC_INFO, (thread_info_t)&basic_thread_info, &count); in observe_thread_user_time()127 after_user_us = (uint64_t)basic_thread_info.user_time.seconds * USEC_PER_SEC + in observe_thread_user_time()128 (uint64_t)basic_thread_info.user_time.microseconds; in observe_thread_user_time()