From fd2fcdeee6b44f7854255cb7e01c81db3cd2d99c Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sun, 3 Jan 2010 05:46:45 +0000 Subject: [PATCH] posix_mq 0.2.0 This release fixes notification (un)registration and should be fully-supported on modern FreeBSD (7.2+) releases. POSIX_MQ#notify=nil correctly unregister notification requests. POSIX_MQ#notify=false now provids the no-op SIGEV_NONE functionality. Under FreeBSD, using IO.select on POSIX_MQ objects is now possible as it has always been under Linux. --- lib/posix_mq.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/posix_mq.rb b/lib/posix_mq.rb index a2a85ee..5e660ec 100644 --- a/lib/posix_mq.rb +++ b/lib/posix_mq.rb @@ -2,7 +2,7 @@ class POSIX_MQ # version of POSIX_MQ, currently 0.1.0 - VERSION = '0.1.0' + VERSION = '0.2.0' # An analogous Struct to "struct mq_attr" in C. # This may be used in arguments for POSIX_MQ.new and -- 2.11.4.GIT