Help for this page

Select Code to Download


  1. or download this
    sub fifocmd
    {
    ...
            icb_print ($output_window, 'status', "Remote control functiona
    +lity will not be available.");
        }
    }
    
  2. or download this
    Group: *test*   (mil) Mod: Testric       Topic: (None)
      *Testric               - 11:43:09 alaric@babcom.com
    ...
     <[DEBUG]>  Read '' from FIFO
     <[DEBUG]>  Read '' from FIFO
     <[DEBUG]>  Read '' from FIFO
    
  3. or download this
                    chomp($fifodata = <FIFO>);
    
  4. or download this
                    my $l;
                    while (sysread(FIFO, $l, 255))
                    {
                        $fifodata .= $l;
                    }
    
  5. or download this
                select($rout = $rin, undef, undef, 0.01);
                if (vec($rout, fileno(FIFO), 1))
                {
    
  6. or download this
               if (select($rout = $rin, undef, undef, 0.01))
               {
    
  7. or download this
               if (select($rout = $rin, undef, undef, undef))
               {