aboutsummaryrefslogtreecommitdiff
path: root/src/Platform/Dummy/Thread.c
blob: 7463269941c1fef45e12767ee95e982e1cff958f (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
#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;
}