semevent-r0drv-solaris.c revision 6a1ea893528f5fa56117114030d2dbdcef035fd9
/* $Id$ */
/** @file
* IPRT - Semaphores, Ring-0 Driver, Solaris.
*/
/*
* Copyright (C) 2006-2010 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 "the-solaris-kernel.h"
#include <iprt/semaphore.h>
#if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86)
# include <iprt/asm-amd64-x86.h>
#endif
/*******************************************************************************
* Structures and Typedefs *
*******************************************************************************/
/**
* Solaris event semaphore.
*/
typedef struct RTSEMEVENTINTERNAL
{
/** Magic value (RTSEMEVENT_MAGIC). */
/** The number of threads referencing this object. */
/** Set if the object is signalled when there are no waiters. */
bool fSignaled;
/** Object generation.
* This is incremented every time the object is signalled and used to
* check for spurious wake-ups. */
/** The number of waiting threads. */
/** The number of signalled threads. */
/** The Solaris mutex protecting this structure and pairing up the with the cv. */
/** The Solaris condition variable. */
{
}
RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...)
{
AssertCompile(sizeof(RTSEMEVENTINTERNAL) > sizeof(void *));
if (!pThis)
return VERR_NO_MEMORY;
pThis->uSignalGen = 0;
*phEventSem = pThis;
return VINF_SUCCESS;
}
{
if (pThis == NIL_RTSEMEVENT)
return VINF_SUCCESS;
AssertMsgReturn(pThis->u32Magic == RTSEMEVENT_MAGIC, ("u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis), VERR_INVALID_HANDLE);
{
/*
* Signal all threads to destroy.
*/
}
{
/*
* We're the last thread referencing this object, destroy it.
*/
}
else
{
/*
* There are other threads still referencing this object, last one cleans up.
*/
}
return VINF_SUCCESS;
}
{
AssertMsgReturn(pThis->u32Magic == RTSEMEVENT_MAGIC, ("u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis), VERR_INVALID_HANDLE);
/*
* If we're in interrupt context we need to unpin the underlying current
* thread as this could lead to a deadlock (see #4259 for the full explanation)
*
* Note! This assumes nobody is using the RTThreadPreemptDisable in an
* interrupt context and expects it to work right. The swtch will
* result in a voluntary preemption. To fix this, we would have to
* do our own counting in RTThreadPreemptDisable/Restore like we do
* on systems which doesn't do preemption (OS/2, linux, ...) and
* check whether preemption was disabled via RTThreadPreemptDisable
* or not and only call swtch if RTThreadPreemptDisable wasn't called.
*/
if (!fAcquired)
{
{
preempt();
}
}
/*
* If there are more waiting threads, wake them up. Otherwise leave the
* semaphore in the signalled state.
*/
{
pThis->uSignalGen++;
}
else
return VINF_SUCCESS;
}
static int rtSemEventWaitWorker(PRTSEMEVENTINTERNAL pThis, RTMSINTERVAL cMillies, bool fInterruptible)
{
/*
* Translate milliseconds into ticks and go to sleep.
*/
int rc = 0;
if (cMillies != RT_INDEFINITE_WAIT)
{
if (fInterruptible)
else
}
else
{
if (fInterruptible)
else
{
rc = 1;
}
}
return rc;
}
{
int rc;
AssertMsgReturn(pThis->u32Magic == RTSEMEVENT_MAGIC, ("u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis), VERR_INVALID_HANDLE);
if (cMillies)
{
/*
* The last signal occurred without any waiters and now we're the first thread
* waiting for the event signal. So no real need to wait for one.
*/
/** @todo r=bird: This will get out of whack if someone is in the
* process of waking up (waiting to be scheduled). Further
* more, a race between a cv_signal and a
* timeout/interruption may cause wakeups to go unconsumed.
* Not sure how we could easily deal with this rigth now... */
rc = VINF_SUCCESS;
}
else if (!cMillies)
rc = VERR_TIMEOUT;
else
{
/* This loop is only for continuing after a spurious wake-up. */
for (;;)
{
if (rc > 0)
{
{
{
/* We've been signaled by cv_signal(), consume the wake up. */
rc = VINF_SUCCESS;
}
else
/* Spurious wakeup due to some signal, go back to waiting. */
continue;
}
else
/* We're being destroyed. */
}
else if (rc == -1)
/* Timeout reached. */
rc = VERR_TIMEOUT;
else
/* Returned due to pending signal */
break;
}
}
{
return rc;
}
return rc;
}
{
}
{
}