semevent-r0drv-solaris.c revision 542b82b1871753dc94a2a17b504094112f9df306
/* $Id$ */
/** @file
* IPRT - Semaphores, Ring-0 Driver, Solaris.
*/
/*
* Copyright (C) 2006-2007 Sun Microsystems, Inc.
*
* 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.
*
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
* Clara, CA 95054 USA or visit http://www.sun.com if you need
* additional information or have any questions.
*/
/*******************************************************************************
* Header Files *
*******************************************************************************/
#include "the-solaris-kernel.h"
#include <iprt/semaphore.h>
/*******************************************************************************
* Structures and Typedefs *
*******************************************************************************/
/**
* Solaris event semaphore.
*/
typedef struct RTSEMEVENTINTERNAL
{
/** Magic value (RTSEMEVENT_MAGIC). */
/** The number of waiting threads. */
/** Set if the event object is signaled. */
/** The number of threads in the process of waking up. */
/** The Solaris mutex protecting this structure and pairing up the with the cv. */
/** The Solaris condition variable. */
{
Assert(sizeof(RTSEMEVENTINTERNAL) > sizeof(void *));
if (pEventInt)
{
return VINF_SUCCESS;
}
return VERR_NO_MEMORY;
}
{
if (EventSem == NIL_RTSEMEVENT)
return VERR_INVALID_HANDLE;
{
/* abort waiting thread, last man cleans up. */
}
{
/* the last waking thread is gonna do the cleanup */
}
else
{
}
return VINF_SUCCESS;
}
{
/*
* 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();
}
}
{
}
else
return VINF_SUCCESS;
}
{
int rc;
if (cMillies)
{
rc = VINF_SUCCESS;
}
else if (!cMillies)
rc = VERR_TIMEOUT;
else
{
/*
* Translate milliseconds into ticks and go to sleep.
*/
if (cMillies != RT_INDEFINITE_WAIT)
{
if (fInterruptible)
else
}
else
{
if (fInterruptible)
else
{
rc = 1;
}
}
if (rc > 0)
{
/* Retured due to call to cv_signal() or cv_broadcast() */
{
{
return rc;
}
}
rc = VINF_SUCCESS;
}
else if (rc == -1)
{
/* Returned due to timeout being reached */
rc = VERR_TIMEOUT;
}
else
{
/* Returned due to pending signal */
}
}
return rc;
}
{
}
{
}