semevent-r0drv-darwin.cpp revision e0e7da0420be1398d23ffa9953686d3a43619abd
/* $Id$ */
/** @file
* IPRT - Single Release Event Semaphores, Ring-0 Driver, Darwin.
*/
/*
* 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-darwin-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>
/*******************************************************************************
* Structures and Typedefs *
*******************************************************************************/
/**
* Waiter entry. Lives on the stack.
*/
typedef struct RTSEMEVENTDARWINENTRY
{
/** The list node. */
/** Flag set when waking up the thread by signal or destroy. */
bool volatile fWokenUp;
/** Pointer to waiter entry. */
typedef RTSEMEVENTDARWINENTRY *PRTSEMEVENTDARWINENTRY;
/**
* Darwin event semaphore.
*/
typedef struct RTSEMEVENTINTERNAL
{
/** Magic value (RTSEMEVENT_MAGIC). */
/** Reference counter. */
/** Set if there are blocked threads. */
bool volatile fHaveBlockedThreads;
/** Set if the event object is signaled. */
bool volatile fSignaled;
/** List of waiting and woken up threads. */
/** The spinlock protecting us. */
{
}
RTDECL(int) RTSemEventCreateEx(PRTSEMEVENT phEventSem, uint32_t fFlags, RTLOCKVALCLASS hClass, const char *pszNameFmt, ...)
{
AssertCompile(sizeof(RTSEMEVENTINTERNAL) > sizeof(void *));
if (pThis)
{
pThis->fHaveBlockedThreads = false;
{
*phEventSem = pThis;
return VINF_SUCCESS;
}
}
return VERR_NO_MEMORY;
}
/**
* Retain a reference to the semaphore.
*
* @param pThis The semaphore.
*/
{
}
/**
* Release a reference, destroy the thing if necessary.
*
* @param pThis The semaphore.
*/
{
{
}
}
{
if (pThis == NIL_RTSEMEVENT)
return VINF_SUCCESS;
AssertMsgReturn(pThis->u32Magic == RTSEMEVENT_MAGIC, ("pThis=%p u32Magic=%#x\n", pThis, pThis->u32Magic), VERR_INVALID_HANDLE);
/* abort waiting threads. */
{
}
return VINF_SUCCESS;
}
{
/** @todo should probably disable interrupts here... update
* semspinmutex-r0drv-generic.c when done. */
/*
* Wake up one thread.
*/
{
{
break;
}
}
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. So, we'll need to convert the timeout and figure
* out if it's indefinite or not.
*/
if (!(fFlags & RTSEMWAIT_FLAGS_INDEFINITE))
{
if (fFlags & RTSEMWAIT_FLAGS_MILLISECS)
: UINT64_MAX;
if (uTimeout == UINT64_MAX)
else
{
if (fFlags & RTSEMWAIT_FLAGS_RELATIVE)
{
if (uTimeout != 0)
{
u64Now = RTTimeSystemNanoTS();
}
}
else
{
u64Now = RTTimeSystemNanoTS();
}
}
}
if ( !(fFlags & RTSEMWAIT_FLAGS_INDEFINITE)
&& uTimeout == 0)
{
/*
* Poll call, we already checked the condition above so no need to
* wait for anything.
*/
rc = VERR_TIMEOUT;
}
else
{
for (;;)
{
/*
* Do the actual waiting.
*/
wait_interrupt_t fInterruptible = fFlags & RTSEMWAIT_FLAGS_INTERRUPTIBLE ? THREAD_ABORTSAFE : THREAD_UNINT;
if (fFlags & RTSEMWAIT_FLAGS_INDEFINITE)
else
{
}
/*
* Deal with the wait result.
*/
{
switch (rcWait)
{
case THREAD_AWAKENED:
rc = VINF_SUCCESS;
else if (fFlags & RTSEMWAIT_FLAGS_INTERRUPTIBLE)
else
break;
case THREAD_TIMED_OUT:
break;
case THREAD_INTERRUPTED:
break;
case THREAD_RESTART:
break;
default:
break;
}
}
else
break;
}
}
}
return rc;
}
{
#ifndef RTSEMEVENT_STRICT
#else
#endif
}
{
}
{
if (cNs == 0)
cNs = 1;
return cNs;
}