semmutex-posix.cpp revision f7600fabdec77f9f39ddaff4a8f94484d4327a9d
/* $Id$ */
/** @file
* IPRT - Mutex Semaphore, POSIX.
*/
/*
* Copyright (C) 2006-2012 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
* General Public License (GPL) as published by the Free Software
* Foundation, in version 2 as it comes in the "COPYING" file of the
* VirtualBox OSE distribution. VirtualBox OSE is distributed in the
* hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL) only, as it comes in the "COPYING.CDDL" file of the
* VirtualBox OSE distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#include <iprt/semaphore.h>
#include <iprt/lockvalidator.h>
#include <errno.h>
#include <pthread.h>
#include <unistd.h>
/*******************************************************************************
* Structures and Typedefs *
*******************************************************************************/
/** Posix internal representation of a Mutex semaphore. */
struct RTSEMMUTEXINTERNAL
{
/** pthread mutex. */
/** The owner of the mutex. */
/** Nesting count. */
/** Magic value (RTSEMMUTEX_MAGIC). */
#ifdef RTSEMMUTEX_STRICT
/** Lock validator record associated with this mutex. */
#endif
};
#ifdef RT_OS_DARWIN
/**
* This function emulate pthread_mutex_timedlock on Mac OS X
*/
static int DarwinPthreadMutexTimedlock(pthread_mutex_t * mutex, const struct timespec * abs_timeout)
{
int rc = 0;
do
{
{
int rcSleep = -1;
while (rcSleep == -1)
}
else
break;
} while ( rc != 0
return rc;
}
#endif
{
return RTSemMutexCreateEx(phMutexSem, 0 /*fFlags*/, NIL_RTLOCKVALCLASS, RTLOCKVAL_SUB_CLASS_NONE, NULL);
}
{
/*
* Allocate semaphore handle.
*/
int rc;
struct RTSEMMUTEXINTERNAL *pThis = (struct RTSEMMUTEXINTERNAL *)RTMemAlloc(sizeof(struct RTSEMMUTEXINTERNAL));
if (pThis)
{
/*
* Create the semaphore.
*/
if (!rc)
{
if (!rc)
{
#ifdef RTSEMMUTEX_STRICT
if (!pszNameFmt)
{
static uint32_t volatile s_iMutexAnon = 0;
}
else
{
}
#endif
*phMutexSem = pThis;
return VINF_SUCCESS;
}
}
}
else
rc = VERR_NO_MEMORY;
return rc;
}
{
/*
* Validate input.
*/
if (hMutexSem == NIL_RTSEMMUTEX)
return VINF_SUCCESS;
/*
* Try destroy it.
*/
if (rc)
{
return RTErrConvertFromErrno(rc);
}
/*
* Free the memory and be gone.
*/
#ifdef RTSEMMUTEX_STRICT
#endif
return VINF_SUCCESS;
}
{
#ifdef RTSEMMUTEX_STRICT
/*
* Validate.
*/
#else
return RTLOCKVAL_SUB_CLASS_INVALID;
#endif
}
DECL_FORCE_INLINE(int) rtSemMutexRequest(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies, PCRTLOCKVALSRCPOS pSrcPos)
{
/*
* Validate input.
*/
/*
* Check if nested request.
*/
{
#ifdef RTSEMMUTEX_STRICT
if (RT_FAILURE(rc9))
return rc9;
#endif
return VINF_SUCCESS;
}
/*
* Lock it.
*/
if (cMillies != 0)
{
#ifdef RTSEMMUTEX_STRICT
int rc9 = RTLockValidatorRecExclCheckOrderAndBlocking(&pThis->ValidatorRec, hThreadSelf, pSrcPos, true,
cMillies, RTTHREADSTATE_MUTEX, true);
if (RT_FAILURE(rc9))
return rc9;
#else
hThreadSelf = RTThreadSelf();
#endif
}
if (cMillies == RT_INDEFINITE_WAIT)
{
/* take mutex */
if (rc)
{
return RTErrConvertFromErrno(rc);
}
}
else
{
#if defined(RT_OS_DARWIN) || defined(RT_OS_HAIKU)
#else
#endif
if (cMillies != 0)
{
{
}
}
/* take mutex */
#ifndef RT_OS_DARWIN
#else
#endif
if (rc)
{
return RTErrConvertFromErrno(rc);
}
}
/*
* Set the owner and nesting.
*/
#ifdef RTSEMMUTEX_STRICT
#endif
return VINF_SUCCESS;
}
{
#ifndef RTSEMMUTEX_STRICT
#else
#endif
}
RTDECL(int) RTSemMutexRequestDebug(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies, RTHCUINTPTR uId, RT_SRC_POS_DECL)
{
}
{
/* (EINTR isn't returned by the wait functions we're using.) */
#ifndef RTSEMMUTEX_STRICT
#else
#endif
}
RTDECL(int) RTSemMutexRequestNoResumeDebug(RTSEMMUTEX hMutexSem, RTMSINTERVAL cMillies, RTHCUINTPTR uId, RT_SRC_POS_DECL)
{
}
{
/*
* Validate input.
*/
#ifdef RTSEMMUTEX_STRICT
if (RT_FAILURE(rc9))
return rc9;
#endif
/*
* Check if nested.
*/
{
AssertMsgFailed(("Not owner of mutex %p!! Self=%08x Owner=%08x cNesting=%d\n",
return VERR_NOT_OWNER;
}
/*
* If nested we'll just pop a nesting.
*/
{
return VINF_SUCCESS;
}
/*
* Clear the state. (cNesting == 1)
*/
/*
* Unlock mutex semaphore.
*/
if (RT_UNLIKELY(rc))
{
return RTErrConvertFromErrno(rc);
}
return VINF_SUCCESS;
}
{
/*
* Validate.
*/
AssertPtrReturn(pThis, false);
}