semevent-r0drv-solaris.c revision 858960add9f9dc845ad839300639ca2d932a1715
/* $Id$ */
/** @file
* IPRT - Single Release Event 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 *
*******************************************************************************/
#define RTSEMEVENT_WITHOUT_REMAPPING
#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
#include <iprt/lockvalidator.h>
#include "semeventwait-r0drv-solaris.h"
/*******************************************************************************
* Structures and Typedefs *
*******************************************************************************/
/**
* Waiter entry. Lives on the stack.
*
* @remarks Unfortunately, we cannot easily use cv_signal because we cannot
* distinguish between it and the spurious wakeups we get after fork.
* So, we keep an unprioritized FIFO with the sleeping threads.
*/
typedef struct RTSEMEVENTSOLENTRY
{
/** The list node. */
/** The thread. */
/** Set to @c true when waking up the thread by signal or destroy. */
/** Pointer to waiter entry. */
typedef RTSEMEVENTSOLENTRY *PRTSEMEVENTSOLENTRY;
/**
* 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;
/** List of waiting and woken up 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 *));
AssertReturn(!(fFlags & ~(RTSEMEVENT_FLAGS_NO_LOCK_VAL | RTSEMEVENT_FLAGS_BOOTSTRAP_HACK)), VERR_INVALID_PARAMETER);
if (!pThis)
return VERR_NO_MEMORY;
*phEventSem = pThis;
return VINF_SUCCESS;
}
/**
* Retain a reference to the semaphore.
*
* @param pThis The semaphore.
*/
{
}
/**
* The destruct.
*
* @param pThis The semaphore.
*/
{
}
/**
* Release a reference, destroy the thing if necessary.
*
* @param pThis The semaphore.
*/
{
}
{
/*
* Validate input.
*/
if (pThis == NIL_RTSEMEVENT)
return VINF_SUCCESS;
AssertMsgReturn(pThis->u32Magic == RTSEMEVENT_MAGIC, ("u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis), VERR_INVALID_HANDLE);
/*
* Invalidate the semaphore.
*/
/*
* Abort and wake up all threads.
*/
{
}
/*
* Release the reference from RTSemEventCreateEx.
*/
return VINF_SUCCESS;
}
{
AssertMsgReturn(pThis->u32Magic == RTSEMEVENT_MAGIC, ("u32Magic=%RX32 pThis=%p\n", pThis->u32Magic, pThis), VERR_INVALID_HANDLE);
/*
* Wake up one thread.
*/
{
{
break;
}
}
#ifdef DEBUG_ramshankar
/** See @bugref{6318} comment#11 */
return VINF_SUCCESS;
#endif
return VINF_SUCCESS;
}
/**
* Worker for RTSemEventWaitEx and RTSemEventWaitExDebug.
*
* @returns VBox status code.
* @param pThis The event semaphore.
* @param fFlags See RTSemEventWaitEx.
* @param uTimeout See RTSemEventWaitEx.
* @param pSrcPos The source code position of the wait.
*/
{
/*
* Validate the input.
*/
AssertMsgReturn(pThis->u32Magic == RTSEMEVENT_MAGIC, ("%p u32Magic=%RX32\n", pThis, pThis->u32Magic), VERR_INVALID_PARAMETER);
/*
* In the signaled state?
*/
int rc;
rc = VINF_SUCCESS;
else
{
/*
* We have to wait.
*/
if (RT_SUCCESS(rc))
{
for (;;)
{
/* The destruction test. */
else
{
/* Check the exit conditions. */
rc = VINF_SUCCESS;
else if (rtR0SemSolWaitHasTimedOut(&Wait))
rc = VERR_TIMEOUT;
else if (rtR0SemSolWaitWasInterrupted(&Wait))
else
{
/* Do the wait and then recheck the conditions. */
continue;
}
}
break;
}
}
}
return rc;
}
{
#ifndef RTSEMEVENT_STRICT
#else
#endif
}
{
}
{
return rtR0SemSolWaitGetResolution();
}