提交 e9148ab6 编写于 作者: B bernard.xiong

fix joinable semaphore of pthread not clear to NULL when detach.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1337 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 adc63f2c
......@@ -180,10 +180,11 @@ int pthread_detach(pthread_t thread)
rt_enter_critical();
/* change to detach state */
ptd->attr.detachstate = PTHREAD_CREATE_DETACHED;
rt_exit_critical();
/* detach joinable semaphore */
rt_sem_delete(ptd->joinable_sem);
ptd->joinable_sem = RT_NULL;
rt_exit_critical();
}
return 0;
......
......@@ -129,7 +129,7 @@ typedef struct pthread_barrier pthread_barrier_t;
int pthread_attr_destroy(pthread_attr_t *attr);
int pthread_attr_init(pthread_attr_t *attr);
int pthread_init (void);
int pthread_system_init(void);
int pthread_create (pthread_t *tid, const pthread_attr_t *attr,
void *(*start) (void *), void *arg);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册