Sign in
android
/
platform
/
external
/
mesa3d
/
b74eb12a8e01ac086ecfa4f6448a3e46b2cb1593
/
.
/
src
/
c11
/
impl
/
threads_win32_tls_callback.cpp
blob: 2d0506a75d23a986fdfe085e01f8a9d8167a810d [
file
] [
log
] [
blame
]
/*
* Copyright 2022 Yonggang Luo
* SPDX-License-Identifier: MIT
*/
#include
"threads_win32.h"
struct
tls_callback
{
tls_callback
()
{
}
~
tls_callback
()
{
__threads_win32_tls_callback
();
}
};
static
thread_local tls_callback tls_callback_instance
;