[lwp]给thread添加lwp成员

This commit is contained in:
heyuanjie
2018-07-30 11:12:12 +08:00
parent e6fedb6e9b
commit c79fbd373f
4 changed files with 15 additions and 10 deletions
+5 -1
View File
@@ -556,7 +556,11 @@ struct rt_thread
void (*cleanup)(struct rt_thread *tid); /**< cleanup function when thread exit */
rt_uint32_t user_data; /**< private user data beyond this thread */
rt_uint32_t user_data; /**< private user data beyond this thread */
#ifdef RT_USING_LWP
struct rt_lwp *lwp; /**< if NULL it's a kernel thread */
#endif
};
typedef struct rt_thread *rt_thread_t;