aboutsummaryrefslogtreecommitdiff
path: root/src/Platform/Dummy/Thread.h
blob: e73cb02a08ae4826423aae2acb80f4d1a9445048 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef BH_PLATFORM_DUMMY_THREAD_H
#define BH_PLATFORM_DUMMY_THREAD_H


#include <BH/Thread.h>


struct BH_Condition
{
    int implement;
    int me;
};


struct BH_Mutex
{
    int implement;
    int me;
};


struct BH_Semaphore
{
    int implement;
    int me;
};


struct BH_Thread
{
    int implement;
    int me;
};


#endif /* BH_PLATFORM_DUMMY_THREAD_H */