QuickCppLib 0.10
Eliminate all the tedious hassle when making state-of-the-art C++ 14 - 23 libraries!
Loading...
Searching...
No Matches
quickcpplib::_xxx::utils::thread Namespace Reference

Functions

unsigned this_thread_id () noexcept
 The thread id of the calling thread.
 

Function Documentation

◆ this_thread_id()

unsigned quickcpplib::_xxx::utils::thread::this_thread_id ( )
inlinenoexcept

The thread id of the calling thread.

58 {
59#ifdef _WIN32
60 return (unsigned) win32::GetCurrentThreadId();
61#elif defined(__linux__)
62 return (unsigned) syscall(SYS_gettid);
63#elif defined(__APPLE__)
64 thread_port_t tid = mach_thread_self();
65 mach_port_deallocate(mach_task_self(), tid);
66 return (unsigned) tid;
67#else
68 return (unsigned) pthread_getthreadid_np();
69#endif
70 }