You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2021/07/19 11:27:05 UTC

[incubator-nuttx] 01/02: sched: Remove unused TLS member from task_group_s

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 95cb33dbf5d0ed0e5e6f85eb623b22388e458033
Author: Huang Qi <hu...@xiaomi.com>
AuthorDate: Sun Jul 18 19:42:06 2021 +0800

    sched: Remove unused TLS member from task_group_s
    
    Signed-off-by: Huang Qi <hu...@xiaomi.com>
---
 include/nuttx/sched.h | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/include/nuttx/sched.h b/include/nuttx/sched.h
index 2167119..8b12a13 100644
--- a/include/nuttx/sched.h
+++ b/include/nuttx/sched.h
@@ -537,12 +537,6 @@ struct task_group_s
 
   FAR struct task_info_s *tg_info;
 
-#if CONFIG_TLS_NELEM > 0
-  tls_ndxset_t tg_tlsset;                   /* Set of TLS indexes allocated */
-
-  tls_dtor_t  tg_tlsdestr[CONFIG_TLS_NELEM];  /* List of TLS destructors    */
-#endif
-
   /* POSIX Signal Control Fields ********************************************/
 
   sq_queue_t tg_sigactionq;         /* List of actions for signals              */