in reply to Interrupting a blocking read (Linux::Inotify2) with a signal handler within a thread

In my experience, the best (or easiest) way to handle that under Linux is to make the underlaying socket non-blocking and then use select to wait for input.

Before the select, place a signal handler that would set a flag variable, and after the select, check if that variable has been set. To work around race-conditions, set a timeout in the select call:

# untested: my $stop = 0; $SIG{INT} = sub { $stop = 1 }; while (1) { my $fileno = fileno($linux_notify2->socket); my $v = ''; vec ($v, $fileno, 1) = 1; select($v, undef, undef, 0.1); last if $stop; if (vec($v, $fileno, 1)) { $linux_notify2->poll; ... } }

Another option, is to use one of the event frameworks available as POE or AnyEvent (though, mixing them with threads can be problematic at least).

  • Comment on Re: Interrupting a blocking read (Linux::Inotify2) with a signal handler within a thread
  • Download Code

Replies are listed 'Best First'.
Re^2: Interrupting a blocking read (Linux::Inotify2) with a signal handler within a thread
by clueless newbie (Curate) on Sep 10, 2011 at 20:53 UTC

    Thank you --- I'm hoping not to have to do that much rework as only the signal handler isn't working.

    I removed the Linux::Inotify2 code from the Watchdog and but still couldn't get either form of the signal handlers to work!