]> pd.if.org Git - pdclib/blob - opt/nothread/tss_create.c
4b8ce168074f5196fc2a32c7e9c42c61813b8737
[pdclib] / opt / nothread / tss_create.c
1 #include <threads.h>\r
2 \r
3 int tss_create(tss_t *key, tss_dtor_t dtor)\r
4 {\r
5         key->self  = key;\r
6         key->value = NULL;\r
7         return thrd_success;\r
8 }