See code below. Is it by design that calling exit() (I know, it is not recommended) does not call the exit handler?

Background: because signals do not work on Windows, I created a thread that waits for a Windows event (Win32::Event). Our tests are scheduled in a parallel scheduler, but if a test exceeds its maximum running time, the scheduler signals (Unix, kill, Windows: event) the running test to terminate. Because the test need to cleanup test data, I have to do pre-exit cleanup. That information is stored in hash tables. These hash tables can be shared, but sharing multi-dimensional hash tables is somewhat cumbersome (and prone to programming errors).

Therefore, if the exit() call in the thread triggered the END exit handler, I could perform the cleanup work there, without having the need to share my data structure across a thread. But remember: using a thread + event is already a workaround. If signals will work, or if you know another method to stop a (hanging) test (can hang on waitpid() on a child, can hang on a long-term operation, whatever) but including at-exit cleanup work.

So the intention is that a signaled thread should abort any operation in the main thread and perform the cleanup code in the exit handler. Any suggestions are welcome.

use strict; use threads; use threads::shared; my $inthread : shared; END { print "Exit handler called (inthread=$inthread)\n"; } # the exit handler (END block) is never called when a thread performs +an exit() # using a lower main sleep time will result in a normal exit of the ma +in thread. my $threadsleeptime : shared = 5; my $mainsleeptime = 2; my $thread = async { $inthread = 1; sleep($threadsleeptime); print "Sleep in thread finished\n"; # force also main thread to exit # but bypasses exit handler in END block exit(1); } sleep($mainsleeptime); print "Sleep in main finished\n"; $thread->join if ($thread); print "End of main program\n";

In reply to Calling exit() in thread does not call exit handler by kees

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.