semevent-linux.cpp revision 5b281ba489ca18f0380d7efc7a5108b606cce449
/* $Id$ */
/** @file
* IPRT - Event Semaphore, Linux (2.6.x+).
*/
/*
* 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 <iprt/semaphore.h>
#include <errno.h>
#include <limits.h>
#include <pthread.h>
#include <unistd.h>
#if 0 /* With 2.6.17 futex.h has become C++ unfriendly. */
#else
# define FUTEX_WAIT 0
# define FUTEX_WAKE 1
#endif
/*******************************************************************************
* Structures and Typedefs *
*******************************************************************************/
/**
* Linux (single wakup) event semaphore.
*/
struct RTSEMEVENTINTERNAL
{
/** Magic value. */
/** The futex state variable.
* <0 means signaled.
* 0 means not signaled, no waiters.
* >0 means not signaled, and the value gives the number of waiters.
*/
};
/**
* Wrapper for the futex syscall.
*/
static long sys_futex(int32_t volatile *uaddr, int op, int val, struct timespec *utime, int32_t *uaddr2, int val3)
{
errno = 0;
if (rc < 0)
{
}
return rc;
}
{
/*
* Allocate semaphore handle.
*/
struct RTSEMEVENTINTERNAL *pThis = (struct RTSEMEVENTINTERNAL *)RTMemAlloc(sizeof(struct RTSEMEVENTINTERNAL));
if (pThis)
{
return VINF_SUCCESS;
}
return VERR_NO_MEMORY;
}
{
/*
* Validate input.
*/
/*
* Invalidate the semaphore and wake up anyone waiting on it.
*/
{
usleep(1000);
}
/*
* Free the semaphore memory and be gone.
*/
return VINF_SUCCESS;
}
{
/*
* Validate input.
*/
/*
* Try signal it.
*/
for (unsigned i = 0;; i++)
{
if (iCur == 0)
{
break; /* nobody is waiting */
}
else if (iCur < 0)
break; /* already signaled */
else
{
/* somebody is waiting, try wake up one of them. */
{
break;
}
/*
* This path is taken in two situations:
* 1) A waiting thread is returning from the sys_futex call with a
* non-zero return value.
* 2) There are two threads signaling the event at the
* same time and only one thread waiting.
*
* At this point we know that nobody is activly waiting on the event but
* at the same time, we are racing someone updating the state. The current
* strategy is to spin till the thread racing us is done, this is kind of
* brain dead and need fixing of course.
*/
if (RT_UNLIKELY(i > 32))
{
if ((i % 128) == 127)
usleep(1000);
else if (!(i % 4))
else
}
}
}
return VINF_SUCCESS;
}
{
/*
* Validate input.
*/
/*
* Quickly check whether it's signaled.
*/
return VINF_SUCCESS;
/*
* Convert timeout value.
*/
if (cMillies != RT_INDEFINITE_WAIT)
{
}
/*
* The wait loop.
*/
for (unsigned i = 0;; i++)
{
/*
* Announce that we're among the waiters.
*/
if (iNew == 0)
return VINF_SUCCESS;
{
/*
* Go to sleep.
*/
return VERR_SEM_DESTROYED;
/* Did somebody wake us up from RTSemEventSignal()? */
if (rc == 0)
return VINF_SUCCESS;
/* No, then the kernel woke us up or we failed going to sleep. Adjust the accounting. */
/*
* Act on the wakup code.
*/
{
return VERR_TIMEOUT;
}
if (rc == -EWOULDBLOCK)
/* retry with new value. */;
{
if (!fAutoResume)
return VERR_INTERRUPTED;
}
else
{
/* this shouldn't happen! */
return RTErrConvertFromErrno(rc);
}
}
else
{
/* this can't happen. */
return VERR_SEM_DESTROYED;
}
}
}
{
return rc;
}
{
}