no1wudi commented on a change in pull request #5498: URL: https://github.com/apache/incubator-nuttx/pull/5498#discussion_r806810800
########## File path: include/nuttx/tls.h ########## @@ -267,6 +270,13 @@ uintptr_t tls_get_value(int tlsindex); int tls_set_value(int tlsindex, uintptr_t tlsvalue); #endif +#if CONFIG_TLS_TASK_NELEM > 0 +int task_tls_alloc(tls_dtor_t dtor); +void task_tls_destruct(void); +int task_tls_set_value(int tlsindex, uintptr_t tlsvalue); +uintptr_t task_tls_get_value(int tlsindex); Review comment: Thanks, I'll add it later -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org