Help for this page

Select Code to Download


  1. or download this
    sub event_loop {
       my $next_event = &get_next_event;  # e.g. time() + 5
    ...
    }
    
    &event_loop while $running;
    
  2. or download this
    if (fork()) {
       $children_spawned++;
    ...
          &do_main_without_timed_events;
       }
    }