2025-01-22 16:18:30 +01:00

18 lines
208 B
C

#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