about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@yhbt.net>2011-01-15 11:54:15 +0000
committerEric Wong <e@yhbt.net>2011-01-15 12:05:58 +0000
commit743560f8af768a65e6f286fecf80b6ebd91be812 (patch)
tree5c077b2b81260dcf78d789deefbab54fb06a975b
parent681c7b02f1e1d9ca70a5748ef986361840746c3d (diff)
downloadsleepy_penguin-1.2.0.tar.gz
One convenience fix:

  epoll: prevent IO objects from getting GC-ed

  Users of our code may forget to keep references for their IO
  objects at all, and since it's not possible for GC to mark
  kernel memory, we just hold on to the IO objects for them.

  We can't unmark close()d file descriptors, ever, so we don't
  bother with the EPOLL_CTL_DEL case, either.  Just storing IO
  objects in an array using the raw descriptor as a key will allow
  bounded space usage just like the in-kernel FD tables as long
  as the user remembers to close descriptors themselves.
-rwxr-xr-xGIT-VERSION-GEN2
-rw-r--r--lib/sleepy_penguin.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index 432f3c0..b89cbb0 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -1,7 +1,7 @@
 #!/bin/sh
 
 GVF=GIT-VERSION-FILE
-DEF_VER=v1.1.1.GIT
+DEF_VER=v1.2.0.GIT
 
 LF='
 '
diff --git a/lib/sleepy_penguin.rb b/lib/sleepy_penguin.rb
index 082fce5..2691926 100644
--- a/lib/sleepy_penguin.rb
+++ b/lib/sleepy_penguin.rb
@@ -1,7 +1,7 @@
 # -*- encoding: binary -*-
 module SleepyPenguin
 
-  # the version of sleepy_penguin, currently 1.1.1
-  SLEEPY_PENGUIN_VERSION = '1.1.1'
+  # the version of sleepy_penguin, currently 1.2.0
+  SLEEPY_PENGUIN_VERSION = '1.2.0'
 end
 require 'sleepy_penguin_ext'