mirror of
https://github.com/ziglang/zig.git
synced 2025-12-07 14:53:08 +00:00
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
12 lines
269 B
C
Vendored
12 lines
269 B
C
Vendored
#include "pthread_impl.h"
|
|
#include <threads.h>
|
|
|
|
static void *__pthread_getspecific(pthread_key_t k)
|
|
{
|
|
struct pthread *self = __pthread_self();
|
|
return self->tsd[k];
|
|
}
|
|
|
|
weak_alias(__pthread_getspecific, pthread_getspecific);
|
|
weak_alias(__pthread_getspecific, tss_get);
|