pthread_mutex_destroy(): Fix an error in destorynig a mutex which can occur after a pthread has been canceled while holding the mutex.
This commit is contained in:
parent
8b81cf5c7e
commit
b07964461e
@ -41,6 +41,7 @@
|
|||||||
|
|
||||||
#include <pthread.h>
|
#include <pthread.h>
|
||||||
#include <semaphore.h>
|
#include <semaphore.h>
|
||||||
|
#include <signal.h>
|
||||||
#include <sched.h>
|
#include <sched.h>
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <debug.h>
|
#include <debug.h>
|
||||||
@ -90,8 +91,30 @@ int pthread_mutex_destroy(FAR pthread_mutex_t *mutex)
|
|||||||
|
|
||||||
if (mutex->pid != -1)
|
if (mutex->pid != -1)
|
||||||
{
|
{
|
||||||
|
#ifndef CONFIG_DISABLE_SIGNALS
|
||||||
|
/* Verify that the PID still exists. We may be destroying the
|
||||||
|
* mutex after cancelling a pthread and the mutex may have been
|
||||||
|
* in a bad state owned by the dead pthread.
|
||||||
|
*/
|
||||||
|
|
||||||
|
ret = kill(mutex->pid, 0);
|
||||||
|
if (ret < 0)
|
||||||
|
{
|
||||||
|
/* That thread associated with the PID no longer exists */
|
||||||
|
|
||||||
|
mutex->pid = -1;
|
||||||
|
|
||||||
|
/* Destroy the semaphore */
|
||||||
|
|
||||||
|
status = sem_destroy((FAR sem_t *)&mutex->sem);
|
||||||
|
ret = (status != OK) ? get_errno() : OK;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
#endif
|
||||||
|
{
|
||||||
ret = EBUSY;
|
ret = EBUSY;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
/* Destroy the semaphore */
|
/* Destroy the semaphore */
|
||||||
@ -99,7 +122,7 @@ int pthread_mutex_destroy(FAR pthread_mutex_t *mutex)
|
|||||||
status = sem_destroy((FAR sem_t *)&mutex->sem);
|
status = sem_destroy((FAR sem_t *)&mutex->sem);
|
||||||
if (status != OK)
|
if (status != OK)
|
||||||
{
|
{
|
||||||
ret = EINVAL;
|
ret = get_errno();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user