forked from LeenkxTeam/LNXSDK
20 lines
225 B
C
20 lines
225 B
C
|
#pragma once
|
||
|
|
||
|
#include <pthread.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
typedef struct {
|
||
|
pthread_mutex_t mutex;
|
||
|
} kinc_mutex_impl_t;
|
||
|
|
||
|
typedef struct {
|
||
|
int nothing;
|
||
|
} kinc_uber_mutex_impl_t;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|