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

18 lines
208 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 {
void *param;
void (*thread)(void *param);
pthread_t pthread;
} kinc_thread_impl_t;
#ifdef __cplusplus
}
#endif