4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-02 19:32:22 +08:00
bernard.xiong aca1628a31 cleanup pthread implementation code.
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1048 bbd45198-f89e-11dd-88c7-29a3b14d5316
2010-11-15 09:46:50 +00:00

20 lines
301 B
C

#include <pthread.h>
void *pthread_getspecific(pthread_key_t key)
{
}
int pthread_setspecific(pthread_key_t key, const void *value)
{
}
int pthread_key_create(pthread_key_t *key, void (*destructor)(void*))
{
return 0;
}
int pthread_key_delete(pthread_key_t key)
{
return 0;
}