about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-06-17 18:35:38 -0700
committerEric Wong <normalperson@yhbt.net>2011-06-17 18:35:38 -0700
commitce08273658b14dc3d53273b514e46b6e65882bf6 (patch)
tree15d023424eb56e1a8c1524b35369899f278fae36
parent72ab71667b2a9c27d1eda73aacb8b86187f317d0 (diff)
downloadkgio-ce08273658b14dc3d53273b514e46b6e65882bf6.tar.gz
It's there for kgio_wait_readable
-rw-r--r--ext/kgio/wait.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/kgio/wait.c b/ext/kgio/wait.c
index 6980561..ce368ba 100644
--- a/ext/kgio/wait.c
+++ b/ext/kgio/wait.c
@@ -66,6 +66,11 @@ static VALUE kgio_wait_readable(int argc, VALUE *argv, VALUE self)
 }
 
 /*
+ * call-seq:
+ *
+ *        io.kgio_wait_writeable          -> IO
+ *        io.kgio_wait_writable(timeout)  -> IO or nil
+ *
  * Blocks the running Thread indefinitely until the IO object is writable
  * or if +timeout+ expires.  If +timeout+ is specified and expires, +nil+
  * is returned.