feat(profile): added bc information
Some checks failed
Push / build (push) Has been cancelled

This commit is contained in:
phaneron 2026-04-04 07:12:21 -04:00
parent c43e39205f
commit 1c5ace1e7f
15 changed files with 179 additions and 34 deletions

View file

@ -0,0 +1,14 @@
#ifndef BC_THREAD_TLS_H
#define BC_THREAD_TLS_H
DECLARE_STRUCT(Blizzard__Thread__TLSSlot);
typedef void (*Blizzard__Thread__TLSDestructor)(void*);
struct Blizzard__Thread__TLSSlot {
uint32_t key;
Blizzard__Thread__TLSDestructor destructor;
bool initialized;
};
#endif