aboutsummaryrefslogtreecommitdiff
path: root/src/Platform/Dummy/Tss.c
blob: 61a0bcd3083d352ef233de282e0c38342e16e77f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "Thread.h"


int BH_TssCreate(BH_GenericCallback callback)
{
    BH_UNUSED(callback);
    return 0;
}


void *BH_TssRead(int index)
{
    BH_UNUSED(index);
    return NULL;
}


void BH_TssWrite(int index,
                 void *value)
{
    BH_UNUSED(index);
    BH_UNUSED(value);
}