Help for this page

Select Code to Download


  1. or download this
    my $output_sem        : shared = Thread::Semaphore->new();
    
  2. or download this
                        if ($success)
                        {
    ...
                            curs_to_ptr($input_window, $ptr);
                            $output_sem->up();
                        }
    
  3. or download this
            elsif ($key eq chr(1))                # home
            {
    ...
                curs_to_ptr($input_window, $ptr);
                $output_sem->up();
            }
    
  4. or download this
    sub icb_print
    {
    ...
    
        $output_sem->up();
    }