RAA - win32-semaphore

win32-semaphore / 0.3.1

Short description: Win32 semaphores with Ruby
Category: Library/Win32
Status: stable
Created: 2004-05-15 05:05:44 GMT
Last update: 2009-08-11 16:02:55 GMT
Owner: Daniel J. Berger (Projects of this owner)
Homepage: http://rubyforge.org/projects/win32utils/
Download: http://rubyforge.org/frs/download.php/61965/win32-semaphore-0.3.1.zip
License: Artistic
Dependency:
Requires: win32-ipc/0.5.0(*) Base class for Win32 synchronization objects
(*): newer version exists
Description:

Ruby interface for semaphores on the Win32 platform.

Synopsis
========
require "win32/semaphore"
include Win32

Semaphore.new(1,5,"foo") do |sem|
puts 'oops' unless sem.wait(10) > 0
sem.release(2)
end

Versions: [0.3.1 (2009-08-11)] [0.3.0 (2007-05-03)] [0.2.2 (2005-06-11)] [0.2.1 (2005-03-01)] [0.2.0 (2004-07-17)] [0.1.0 (2004-05-15)]

Edit this project (for project owner)

back to RAA top