mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-02 19:32:22 +08:00
aca1628a31
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1048 bbd45198-f89e-11dd-88c7-29a3b14d5316
20 lines
301 B
C
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;
|
|
}
|