Files
LNXRNT/Kinc/Backends/System/POSIX/Sources/kinc/backend/threadlocal.h

16 lines
170 B
C
Raw Normal View History

2025-01-29 10:55:49 +01:00
#pragma once
#include <pthread.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
pthread_key_t key;
} kinc_thread_local_impl_t;
#ifdef __cplusplus
}
#endif