/**************************************************************************** * sched/pthread/pthread_mutexdestroy.c * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. The * ASF licenses this file to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance with the * License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations * under the License. * ****************************************************************************/ /**************************************************************************** * Included Files ****************************************************************************/ #include #include #include #include #include #include #include #include #include "pthread/pthread.h" /**************************************************************************** * Public Functions ****************************************************************************/ /**************************************************************************** * Name: pthread_mutex_destroy * * Description: * Destroy a mutex. * * Input Parameters: * None * * Returned Value: * None * * Assumptions: * ****************************************************************************/ int pthread_mutex_destroy(FAR pthread_mutex_t *mutex) { int ret = EINVAL; int status; sinfo("mutex=0x%p\n", mutex); DEBUGASSERT(mutex != NULL); if (mutex != NULL) { /* Make sure the semaphore is stable while we make the following * checks. */ sched_lock(); /* Is the mutex available? */ if (mutex->pid >= 0) { /* < 0: available, >0 owned, ==0 error */ DEBUGASSERT(mutex->pid != 0); /* No.. 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. NOTE: The * following behavior is unspecified for pthread_mutex_destroy() * (see pthread_mutex_consistent()). * * If the holding thread is still valid, then we should be able to * map its PID to the underlying TCB. That is what * nxsched_get_tcb() does. */ if (nxsched_get_tcb(mutex->pid) == NULL) { /* The thread associated with the PID no longer exists */ mutex->pid = -1; /* Reset the semaphore. If threads are were on this * semaphore, then this will awakened them and make * destruction of the semaphore impossible here. */ status = nxsem_reset((FAR sem_t *)&mutex->sem, 1); if (status < 0) { ret = -status; } /* Check if the reset caused some other thread to lock the * mutex. */ else if (mutex->pid != -1) { /* Yes.. then we cannot destroy the mutex now. */ ret = EBUSY; } /* Destroy the underlying semaphore */ else { status = nxsem_destroy((FAR sem_t *)&mutex->sem); ret = (status < 0) ? -status : OK; } } else { ret = EBUSY; } } else { /* Destroy the semaphore * * REVISIT: What if there are threads waiting on the semaphore? * Perhaps this logic should all nxsem_reset() first? */ status = nxsem_destroy((FAR sem_t *)&mutex->sem); ret = ((status < 0) ? -status : OK); } sched_unlock(); } sinfo("Returning %d\n", ret); return ret; }