libXDispatch 0.4
Public Member Functions
xdispatch::semaphore Class Reference

Wraps dispatch semaphores as provided by libDispatch. More...

Inheritance diagram for xdispatch::semaphore:

List of all members.

Public Member Functions

 semaphore (int=1)
 Constructs a new semaphore with the given initial value.
 semaphore (dispatch_semaphore_t)
 Constructs a new semaphore using the given dispatch_semaphore_t object.
 semaphore (const semaphore &)
 ~semaphore ()
int release ()
 Release the semaphore.
void acquire ()
 Acquires the semaphore.
bool try_acquire (dispatch_time_t)
 Tries to acquire the semaphore.
bool try_acquire (struct tm *)
 Tries to acquire the semaphore.
virtual const dispatch_semaphore_t native () const

Detailed Description

Wraps dispatch semaphores as provided by libDispatch.

"A dispatch semaphore is an efficient implementation of a traditional counting semaphore. Dispatch semaphores call down to the kernel only when the calling thread needs to be blocked. If the calling semaphore does not need to block, no kernel call is made."


Constructor & Destructor Documentation

xdispatch::semaphore::semaphore ( int  = 1)

Constructs a new semaphore with the given initial value.

Passing zero for the value is useful for when two threads need to reconcile the completion of a particular event. Passing a value greather than zero is useful for managing a finite pool of resources, where the pool size is equal to the value.

Remarks:
Never pass a value less than zero here
xdispatch::semaphore::semaphore ( dispatch_semaphore_t  )

Constructs a new semaphore using the given dispatch_semaphore_t object.

xdispatch::semaphore::semaphore ( const semaphore )
xdispatch::semaphore::~semaphore ( )

Member Function Documentation

void xdispatch::semaphore::acquire ( )

Acquires the semaphore.

Decrements the counting semaphore. If the value is less than zero it will wait until another thread released the semaphore.

virtual const dispatch_semaphore_t xdispatch::semaphore::native ( ) const [virtual]
Returns:
The dispatch_semaphore_t object associated with this C++ object. Use this, if you need to use the plain C Interface of libdispatch.
int xdispatch::semaphore::release ( )

Release the semaphore.

Increments the counting semaphore. If the previous value was less than zero, this function wakes a waiting thread before returning.

Returns:
non-zero if a thread was woken, zero otherwise.
bool xdispatch::semaphore::try_acquire ( dispatch_time_t  )

Tries to acquire the semaphore.

Decrements the counting semaphore. If the value is less than zero it will wait until either another thread released the semaphore or the timeout passed.

Returns:
true if acquiring the semaphore succeeded.
bool xdispatch::semaphore::try_acquire ( struct tm *  )

Tries to acquire the semaphore.

Decrements the counting semaphore. If the value is less than zero it will wait until either another thread released the semaphore or the timeout passed.

Returns:
true if acquiring the semaphore succeeded.

The documentation for this class was generated from the following file:

Generated on Wed Feb 22 2012 19:51:17 for libXDispatch by Doxygen 1.7.4
Content © 2011-2012 MLBA (about | privacy) – Design © 2010-2012 Emzeat. All Rights reserved.