Blame IlmThread/IlmThreadSemaphorePosix.cpp

Packit 8dc392
///////////////////////////////////////////////////////////////////////////
Packit 8dc392
//
Packit 8dc392
// Copyright (c) 2005-2012, Industrial Light & Magic, a division of Lucas
Packit 8dc392
// Digital Ltd. LLC
Packit 8dc392
// 
Packit 8dc392
// All rights reserved.
Packit 8dc392
// 
Packit 8dc392
// Redistribution and use in source and binary forms, with or without
Packit 8dc392
// modification, are permitted provided that the following conditions are
Packit 8dc392
// met:
Packit 8dc392
// *       Redistributions of source code must retain the above copyright
Packit 8dc392
// notice, this list of conditions and the following disclaimer.
Packit 8dc392
// *       Redistributions in binary form must reproduce the above
Packit 8dc392
// copyright notice, this list of conditions and the following disclaimer
Packit 8dc392
// in the documentation and/or other materials provided with the
Packit 8dc392
// distribution.
Packit 8dc392
// *       Neither the name of Industrial Light & Magic nor the names of
Packit 8dc392
// its contributors may be used to endorse or promote products derived
Packit 8dc392
// from this software without specific prior written permission. 
Packit 8dc392
// 
Packit 8dc392
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
Packit 8dc392
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
Packit 8dc392
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
Packit 8dc392
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
Packit 8dc392
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
Packit 8dc392
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
Packit 8dc392
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
Packit 8dc392
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
Packit 8dc392
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
Packit 8dc392
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Packit 8dc392
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Packit 8dc392
//
Packit 8dc392
///////////////////////////////////////////////////////////////////////////
Packit 8dc392
Packit 8dc392
//-----------------------------------------------------------------------------
Packit 8dc392
//
Packit 8dc392
//	class Semaphore -- implementation for platforms
Packit 8dc392
//	that support Posix threads and Posix semaphores
Packit 8dc392
//
Packit 8dc392
//-----------------------------------------------------------------------------
Packit 8dc392
Packit 8dc392
#include "IlmBaseConfig.h"
Packit 8dc392
Packit 8dc392
#if HAVE_PTHREAD && HAVE_POSIX_SEMAPHORES
Packit 8dc392
Packit 8dc392
#include "IlmThreadSemaphore.h"
Packit 8dc392
#include "Iex.h"
Packit 8dc392
#include <assert.h>
Packit 8dc392
#include <errno.h>
Packit 8dc392
Packit 8dc392
ILMTHREAD_INTERNAL_NAMESPACE_SOURCE_ENTER
Packit 8dc392
Packit 8dc392
Packit 8dc392
Semaphore::Semaphore (unsigned int value)
Packit 8dc392
{
Packit 8dc392
    if (::sem_init (&_semaphore, 0, value))
Packit 8dc392
	IEX_NAMESPACE::throwErrnoExc ("Cannot initialize semaphore (%T).");
Packit 8dc392
}
Packit 8dc392
Packit 8dc392
Packit 8dc392
Semaphore::~Semaphore ()
Packit 8dc392
{
Packit 8dc392
    int error = ::sem_destroy (&_semaphore);
Packit 8dc392
    assert (error == 0);
Packit 8dc392
}
Packit 8dc392
Packit 8dc392
Packit 8dc392
void
Packit 8dc392
Semaphore::wait ()
Packit 8dc392
{
Packit 8dc392
    while( ::sem_wait( &_semaphore ) == -1 && errno == EINTR )
Packit 8dc392
    {
Packit 8dc392
    }
Packit 8dc392
}
Packit 8dc392
Packit 8dc392
Packit 8dc392
bool
Packit 8dc392
Semaphore::tryWait ()
Packit 8dc392
{
Packit 8dc392
    return sem_trywait (&_semaphore) == 0;
Packit 8dc392
}
Packit 8dc392
Packit 8dc392
Packit 8dc392
void
Packit 8dc392
Semaphore::post ()
Packit 8dc392
{
Packit 8dc392
    if (::sem_post (&_semaphore))
Packit 8dc392
        IEX_NAMESPACE::throwErrnoExc ("Post operation on semaphore failed (%T).");
Packit 8dc392
}
Packit 8dc392
Packit 8dc392
Packit 8dc392
int
Packit 8dc392
Semaphore::value () const
Packit 8dc392
{
Packit 8dc392
    int value;
Packit 8dc392
Packit 8dc392
    if (::sem_getvalue (&_semaphore, &value))
Packit 8dc392
        IEX_NAMESPACE::throwErrnoExc ("Cannot read semaphore value (%T).");
Packit 8dc392
Packit 8dc392
    return value;
Packit 8dc392
}
Packit 8dc392
Packit 8dc392
Packit 8dc392
ILMTHREAD_INTERNAL_NAMESPACE_SOURCE_EXIT
Packit 8dc392
Packit 8dc392
#endif