Help for this page

Select Code to Download


  1. or download this
    while(@bits = $selectFD->can_read)
    
  2. or download this
    select(undef, undef, undef, 0.1);
    
  3. or download this
    @bits = $selectFD->can_read(30);
    if (@bits == 0) {
    ...
        blah blah blah
      }
    }