Actions
Feature #4646
closed[PATCH] io/wait: add IO#wait_writable method
    Feature #4646:
    [PATCH] io/wait: add IO#wait_writable method
  
Description
This is easier to use than IO.select for a single IO object
and is immune to the limitations/innefficiency of select()
on platforms where poll/ppoll is available.
Files
        
          
          Updated by mame (Yusuke Endoh) over 13 years ago
          
          
        
        
      
      - Status changed from Open to Assigned
 - Assignee set to nobu (Nobuyoshi Nakada)
 
        
          
          Updated by mame (Yusuke Endoh) almost 13 years ago
          
          
        
        
      
      - Target version changed from 2.0.0 to 2.6
 
        
          
          Updated by nobu (Nobuyoshi Nakada) almost 13 years ago
          
          
        
        
      
      - Status changed from Assigned to Closed
 - % Done changed from 0 to 100
 
This issue was solved with changeset r37785.
Eric, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
io/wait: add IO#wait_writable method
- ext/io/wait/wait.c (io_wait_writable): this is easier to use than
IO.select for a single IO object and is immune to the
limitations/innefficiency of select() on platforms where poll/ppoll
is available. patched by Eric Wong. [Feature #4646] 
Actions