blob: ddb49731cb77a3dadbf16c3c869b37eb3c9f7730 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#ifndef GLTHREAD_H
#define GLTHREAD_H
#include "u_thread.h"
#ifdef __cplusplus
extern "C" {
#endif
#define _glthread_InitTSD(tsd) u_tsd_init(tsd);
#define _glthread_DestroyTSD(tsd) u_tsd_destroy(tsd);
#define _glthread_GetTSD(tsd) u_tsd_get(tsd);
#define _glthread_SetTSD(tsd, ptr) u_tsd_set(tsd, ptr);
typedef struct u_tsd _glthread_TSD;
#ifdef __cplusplus
}
#endif
#endif /* GLTHREAD_H */
|