mirror of
https://github.com/doitsujin/dxvk.git
synced 2024-12-14 09:23:53 +01:00
28 lines
644 B
C++
28 lines
644 B
C++
#include "thread.h"
|
|
#include "util_likely.h"
|
|
|
|
#include <atomic>
|
|
|
|
#ifndef _WIN32
|
|
|
|
namespace dxvk::this_thread {
|
|
|
|
static std::atomic<uint32_t> g_threadCtr = { 0u };
|
|
static thread_local uint32_t g_threadId = 0u;
|
|
|
|
// This implementation returns thread ids unique to the current instance.
|
|
// ie. if you use this across multiple .so's then you might get conflicting ids.
|
|
//
|
|
// This isn't an issue for us, as it is only used by the spinlock implementation,
|
|
// but may be for you if you use this elsewhere.
|
|
uint32_t get_id() {
|
|
if (unlikely(!g_threadId))
|
|
g_threadId = ++g_threadCtr;
|
|
|
|
return g_threadId;
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|