in reply to XML::SAX::ExpatXS - stop parsing?

How about
die "DONE\n"; ... if (!eval { $parser->parse_string($tree); 1 # No exception }) { die $@ if $@ ne "DONE\n"; }

Replies are listed 'Best First'.
Re^2: XML::SAX::ExpatXS - stop parsing?
by Jaap (Curate) on Jul 25, 2011 at 22:43 UTC
    Hmm why didn't i think of that? Is that stuff safe with mod_perl?
      die in one thread and process does not affect other threads or processes.