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


int BH_TssCreate(BH_GenericCallback callback)
{

    BH_UNUSED(callback);
}


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


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