From aa9beecf64739ea084158ff63a92f626bfb5717d Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Sat, 13 Mar 2010 00:28:14 -0800 Subject: posix_mq 0.4.0 Small bugfixes and small API changes to avoid potential issues/misuse are the focus of this release. For non-blocking operation, the GVL is no longer bounced. This reduces synchronization/scheduling overhead when used in non-blocking applications. Small cleanups and documentation improvements, too. * make POSIX_MQ#dup and POSIX_MQ#clone no-op * do not release GVL for non-blocking operations * do not release GVL when unlinking/opening * POSIX_MQ#<< does not release GVL when non-blocking * avoid shadow warnings * README: add mailing list archives info * POSIX_MQ#to_io works under FreeBSD, too * fix potential race with notify(&block) * add TODO item for using netlink under Linux * remove non-portable #warning CPP directive * ensure POSIX_MQ#name is clobber-proof --- lib/posix_mq.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/posix_mq.rb b/lib/posix_mq.rb index 33b54f4..55b26a1 100644 --- a/lib/posix_mq.rb +++ b/lib/posix_mq.rb @@ -1,8 +1,8 @@ # -*- encoding: binary -*- class POSIX_MQ - # version of POSIX_MQ, currently 0.3.1 - VERSION = '0.3.1' + # version of POSIX_MQ, currently 0.4.0 + VERSION = '0.4.0' # An analogous Struct to "struct mq_attr" in C. # This may be used in arguments for POSIX_MQ.new and -- cgit v1.2.3-24-ge0c7