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
14 lines
246 B
C
Vendored
14 lines
246 B
C
Vendored
#include "pthread_impl.h"
|
|
#include <threads.h>
|
|
|
|
int tss_set(tss_t k, void *x)
|
|
{
|
|
struct pthread *self = __pthread_self();
|
|
/* Avoid unnecessary COW */
|
|
if (self->tsd[k] != x) {
|
|
self->tsd[k] = x;
|
|
self->tsd_used = 1;
|
|
}
|
|
return thrd_success;
|
|
}
|