X-Git-Url: https://pd.if.org/git/?p=pdclib;a=blobdiff_plain;f=platform%2Fwin32%2Ffunctions%2F_PDCLIB%2F_tls_used.c;h=e13168ba29fb3fd7f7573338ad17026349afd4b4;hp=328d77e643d9e717299531eb2bee7bee4ad4161d;hb=abc15df6b9fae3374d24c7cf5c3ab94c605b2a6d;hpb=8894c921674bb116d0a7b8f23a55311e7a768019 diff --git a/platform/win32/functions/_PDCLIB/_tls_used.c b/platform/win32/functions/_PDCLIB/_tls_used.c index 328d77e..e13168b 100644 --- a/platform/win32/functions/_PDCLIB/_tls_used.c +++ b/platform/win32/functions/_PDCLIB/_tls_used.c @@ -1,55 +1,55 @@ -#ifndef REGTEST -#include -#include -#include - -/* Win32 TLS support - * - * Components which depend upon TLS must express a dependency on the symbol - * _tls_used. This will cause said symbol to be emitted. - * - * The linker (in the case of both Microsoft's linker and Binutils, at least) - * will point the TLS directory entry in the PE header to _tls_used. - * - * NOTE: On Windows versions < NT 6.0, the TLS support _only_ works for - * the main executable and any DLLs loaded as dependencies of it - */ - -extern char __tls_start__[], __tls_end__[]; -ULONG _tls_index = TLS_OUT_OF_INDEXES; - -extern void NTAPI _PDCLIB_runTlsCallbacks(void * image, DWORD reason, PVOID pv); -static PIMAGE_TLS_CALLBACK tlsCallbacks[] = { - &_PDCLIB_runTlsCallbacks, - NULL, -}; - -#ifdef __GNUC__ -__attribute__((__section__(".rdata$T"))) -#else -__declspec(allocate(".rdata$T")) -#endif -#ifdef _WIN64 -const IMAGE_TLS_DIRECTORY64 _tls_used = { -#else -const IMAGE_TLS_DIRECTORY _tls_used = { -#endif - (uintptr_t) &__tls_start__, - (uintptr_t) &__tls_end__, - (uintptr_t) &_tls_index, // TLS index - (uintptr_t) &tlsCallbacks[0], // TLS callback array - (ULONG) 0, // Size of zero fill - (ULONG) 0 // Characteristics -}; -#endif - -#ifdef TEST -#include "_PDCLIB_test.h" - -/* Tested in tss_get.c */ -int main( void ) -{ - return TEST_RESULTS; -} - +#ifndef REGTEST +#include +#include +#include + +/* Win32 TLS support + * + * Components which depend upon TLS must express a dependency on the symbol + * _tls_used. This will cause said symbol to be emitted. + * + * The linker (in the case of both Microsoft's linker and Binutils, at least) + * will point the TLS directory entry in the PE header to _tls_used. + * + * NOTE: On Windows versions < NT 6.0, the TLS support _only_ works for + * the main executable and any DLLs loaded as dependencies of it + */ + +extern char __tls_start__[], __tls_end__[]; +ULONG _tls_index = TLS_OUT_OF_INDEXES; + +extern void NTAPI _PDCLIB_runTlsCallbacks(void * image, DWORD reason, PVOID pv); +static PIMAGE_TLS_CALLBACK tlsCallbacks[] = { + &_PDCLIB_runTlsCallbacks, + NULL, +}; + +#ifdef __GNUC__ +__attribute__((__section__(".rdata$T"))) +#else +__declspec(allocate(".rdata$T")) +#endif +#ifdef _WIN64 +const IMAGE_TLS_DIRECTORY64 _tls_used = { +#else +const IMAGE_TLS_DIRECTORY _tls_used = { +#endif + (uintptr_t) &__tls_start__, + (uintptr_t) &__tls_end__, + (uintptr_t) &_tls_index, // TLS index + (uintptr_t) &tlsCallbacks[0], // TLS callback array + (ULONG) 0, // Size of zero fill + (ULONG) 0 // Characteristics +}; +#endif + +#ifdef TEST +#include "_PDCLIB_test.h" + +/* Tested in tss_get.c */ +int main( void ) +{ + return TEST_RESULTS; +} + #endif \ No newline at end of file