blob: ef8fad3ad65a88241754f1ba58acd2485a95b232 (
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
|
#include "Thread.h"
BH_Thread *BH_ThreadNew(size_t stack,
BH_ThreadCallback callback,
void *data)
{
BH_UNUSED(stack);
BH_UNUSED(callback);
BH_UNUSED(data);
return NULL;
}
int BH_ThreadJoin(BH_Thread *thread)
{
BH_UNUSED(thread);
return BH_NOIMPL;
}
int BH_ThreadDetach(BH_Thread *thread)
{
BH_UNUSED(thread);
return BH_NOIMPL;
}
void BH_ThreadSleep(uint32_t timeout)
{
BH_UNUSED(timeout);
}
|