aboutsummaryrefslogtreecommitdiff
path: root/src/Platform/Dummy/Thread.c
blob: a36a78043c64de675ab4ffac5b9f527a6decac5b (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
#include "Thread.h"

#include <BH/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;
}