mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-18 19:19:18 +08:00
修复TLS申请内存后没有初始化问题
This commit is contained in:
parent
564ca848f4
commit
f7f0afe03e
@ -55,6 +55,8 @@ int pthread_setspecific(pthread_key_t key, const void *value)
|
|||||||
if (ptd->tls == NULL)
|
if (ptd->tls == NULL)
|
||||||
{
|
{
|
||||||
ptd->tls = (void**)rt_malloc(sizeof(void*) * PTHREAD_KEY_MAX);
|
ptd->tls = (void**)rt_malloc(sizeof(void*) * PTHREAD_KEY_MAX);
|
||||||
|
|
||||||
|
rt_memset(ptd->tls, 0, sizeof(void*) * PTHREAD_KEY_MAX);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((key < PTHREAD_KEY_MAX) && _thread_keys[key].is_used)
|
if ((key < PTHREAD_KEY_MAX) && _thread_keys[key].is_used)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user