Help for this page

Select Code to Download


  1. or download this
    while ($keepOnWatching) {
     $inotify->watch($watchpoint,IN_ALL_EVENTS);
    ...
     # undef $inotify
     processEvents(@events);
    }
    
  2. or download this
     $inotify->watch($watchpoint,IN_ALL_EVENTS);
    while ($keepOnWatching) {
     @events=$inotify->read;# sleep, and wake when events arrive
     processEvents(@events);
    }