/* $Id$ */
/** @file
* IPRT - Multiple Release Event Semaphore, Linux (2.6.x+).
*/
/*
* Copyright (C) 2006-2012 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.
*/
#include <features.h>
/*
* glibc 2.6 fixed a serious bug in the mutex implementation. We wrote this
* linux specific event semaphores code in order to work around the bug. As it
* turns out, this code seems to have an unresolved issue (@bugref{2599}), so we'll
* fall back on the pthread based implementation if glibc is known to contain
* the bug fix.
*
* The external reference to epoll_pwait is a hack which prevents that we link
* against glibc < 2.6.
*/
#include "../posix/semeventmulti-posix.cpp"
asm volatile (".global epoll_pwait");
#else /* glibc < 2.6 */
/*******************************************************************************
* Header Files *
*******************************************************************************/
#include <iprt/semaphore.h>
#include <iprt/lockvalidator.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
#endif
/*******************************************************************************
* Structures and Typedefs *
*******************************************************************************/
/**
* Linux multiple wakup event semaphore.
*/
struct RTSEMEVENTMULTIINTERNAL
{
/** Magic value. */
/** The futex state variable.
* -1 means signaled.
* 0 means not signaled, no waiters.
* 1 means not signaled and that someone is waiting.
*/
#ifdef RTSEMEVENTMULTI_STRICT
/** Signallers. */
/** Indicates that lock validation should be performed. */
bool volatile fEverHadSignallers;
#endif
};
/**
* 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;
}
{
}
RTDECL(int) RTSemEventMultiCreateEx(PRTSEMEVENTMULTI phEventMultiSem, uint32_t fFlags, RTLOCKVALCLASS hClass,
const char *pszNameFmt, ...)
{
/*
* Allocate semaphore handle.
*/
struct RTSEMEVENTMULTIINTERNAL *pThis = (struct RTSEMEVENTMULTIINTERNAL *)RTMemAlloc(sizeof(struct RTSEMEVENTMULTIINTERNAL));
if (pThis)
{
#ifdef RTSEMEVENTMULTI_STRICT
if (!pszNameFmt)
{
}
else
{
pszNameFmt, va);
}
pThis->fEverHadSignallers = false;
#endif
*phEventMultiSem = pThis;
return VINF_SUCCESS;
}
return VERR_NO_MEMORY;
}
{
/*
* Validate input.
*/
if (pThis == NIL_RTSEMEVENTMULTI)
return VINF_SUCCESS;
/*
* Invalidate the semaphore and wake up anyone waiting on it.
*/
{
usleep(1000);
}
/*
* Free the semaphore memory and be gone.
*/
#ifdef RTSEMEVENTMULTI_STRICT
#endif
return VINF_SUCCESS;
}
{
/*
* Validate input.
*/
#ifdef RTSEMEVENTMULTI_STRICT
if (pThis->fEverHadSignallers)
{
if (RT_FAILURE(rc9))
return rc9;
}
#endif
/*
* Signal it.
*/
if (iOld > 0)
{
/* wake up sleeping threads. */
}
return VINF_SUCCESS;
}
{
/*
* Validate input.
*/
#ifdef RT_STRICT
#endif
/*
* Reset it.
*/
return VINF_SUCCESS;
}
DECLINLINE(int) rtSemEventLnxMultiWait(struct RTSEMEVENTMULTIINTERNAL *pThis, uint32_t fFlags, uint64_t uTimeout,
{
/*
* Validate input.
*/
/*
* Quickly check whether it's signaled.
*/
if (iCur == -1)
return VINF_SUCCESS;
/*
* Check and convert the timeout value.
*/
if (!(fFlags & RTSEMWAIT_FLAGS_INDEFINITE))
{
/* If the timeout is zero, then we're done. */
if (!uTimeout)
return VERR_TIMEOUT;
/* Convert it to a deadline + interval timespec. */
if (fFlags & RTSEMWAIT_FLAGS_MILLISECS)
: UINT64_MAX;
{
if (fFlags & RTSEMWAIT_FLAGS_RELATIVE)
else
{
return VERR_TIMEOUT;
}
{
}
}
}
/*
* The wait loop.
*/
#ifdef RTSEMEVENTMULTI_STRICT
#else
#endif
for (unsigned i = 0;; i++)
{
/*
* Start waiting. We only account for there being or having been
* threads waiting on the semaphore to keep things simple.
*/
if ( iCur == 1
{
/* adjust the relative timeout */
if (pTimeout)
{
if (i64Diff < 1000)
return VERR_TIMEOUT;
}
#ifdef RTSEMEVENTMULTI_STRICT
if (pThis->fEverHadSignallers)
{
if (RT_FAILURE(rc9))
return rc9;
}
#endif
return VERR_SEM_DESTROYED;
if (rc == 0)
return VINF_SUCCESS;
/*
* Act on the wakup code.
*/
{
/** @todo something is broken here. shows up every now and again in the ata
* code. Should try to run the timeout against RTTimeMilliTS to
* check that it's doing the right thing... */
return VERR_TIMEOUT;
}
if (rc == -EWOULDBLOCK)
/* retry, the value changed. */;
{
if (fFlags & RTSEMWAIT_FLAGS_NORESUME)
return VERR_INTERRUPTED;
}
else
{
/* this shouldn't happen! */
return RTErrConvertFromErrno(rc);
}
}
else if (iCur == -1)
return VINF_SUCCESS;
}
}
RTDECL(int) RTSemEventMultiWaitEx(RTSEMEVENTMULTI hEventMultiSem, uint32_t fFlags, uint64_t uTimeout)
{
#ifndef RTSEMEVENT_STRICT
#else
#endif
}
RTDECL(int) RTSemEventMultiWaitExDebug(RTSEMEVENTMULTI hEventMultiSem, uint32_t fFlags, uint64_t uTimeout,
{
}
{
#ifdef RTSEMEVENTMULTI_STRICT
#endif
}
{
#ifdef RTSEMEVENTMULTI_STRICT
#endif
}
{
#ifdef RTSEMEVENTMULTI_STRICT
#endif
}
#endif /* glibc < 2.6 || IPRT_WITH_FUTEX_BASED_SEMS */