X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=script%2Fpublic-inbox-watch;h=af02d8f358f7b84392744b68df49a4328fc69636;hb=4eee5af6011cc8cdefb66c9729952c7eff5c0b0b;hp=10c7cd6f97fdfabeac71117dae93788779bbae0a;hpb=b90e8d6e02852c47d0c08198d8c7afb5dbe008d7;p=public-inbox.git diff --git a/script/public-inbox-watch b/script/public-inbox-watch index 10c7cd6f..af02d8f3 100755 --- a/script/public-inbox-watch +++ b/script/public-inbox-watch @@ -13,8 +13,6 @@ use IO::Handle; # ->autoflush use PublicInbox::Watch; use PublicInbox::Config; use PublicInbox::DS; -use PublicInbox::Sigfd; -use PublicInbox::Syscall qw(SFD_NONBLOCK); my $do_scan = 1; GetOptions('scan!' => \$do_scan, # undocumented, testing only 'help|h' => \(my $show_help)) or do { print STDERR $help; exit 1 }; @@ -56,12 +54,5 @@ if ($watch) { # --no-scan is only intended for testing atm, undocumented. PublicInbox::DS::requeue($scan) if $do_scan; - - my $sigfd = PublicInbox::Sigfd->new($sig, SFD_NONBLOCK); - local %SIG = (%SIG, %$sig) if !$sigfd; - if (!$sigfd) { - PublicInbox::DS::sig_setmask($oldset); - PublicInbox::DS->SetLoopTimeout(1000); - } $watch->watch($sig, $oldset) while ($watch); }