blob: 0dac2e1c7489d06d7b9609904a3269971965a94a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef DEF_THREAD_IFACE_H
#define DEF_THREAD_IFACE_H
#define THIF_OBJTYPE 0x21
//S = static, GET = get, C = current, TH = thread
#define THIF_SGETCTH 0
#define THIF_SLEEP 0x01
#define THIF_FINISH 0x02
#endif
|