Fix get_thread_time() declaration on FreeBSD

This commit is contained in:
Ganael Laplanche 2023-11-29 21:05:21 +01:00
parent af046c8987
commit 5486a7a467
1 changed files with 2 additions and 2 deletions

View File

@ -64,7 +64,7 @@ static u64 getthreadtime(thread_port_t thread)
} }
#endif #endif
#ifdef __linux__ #if defined(__linux__) || defined(__FreeBSD__)
// Helper function to get either either the current cpu usage // Helper function to get either either the current cpu usage
// in called thread or in id thread // in called thread or in id thread
static u64 get_thread_time(void* id = 0) static u64 get_thread_time(void* id = 0)
@ -227,7 +227,7 @@ u64 Threading::ThreadHandle::GetCPUTime() const
return user.u64time + kernel.u64time; return user.u64time + kernel.u64time;
#elif defined(__APPLE__) #elif defined(__APPLE__)
return getthreadtime(pthread_mach_thread_np((pthread_t)m_native_handle)); return getthreadtime(pthread_mach_thread_np((pthread_t)m_native_handle));
#elif defined(__linux__) #elif defined(__linux__) || defined(__FreeBSD__)
return get_thread_time(m_native_handle); return get_thread_time(m_native_handle);
#else #else
return 0; return 0;