At least on Linux (and probably other unices) you can signal your own process. Use the kill command:
kill 2, $$;
Here $$ is the pid of the current process (the one for the running script). The signal number is the same one you would use with kill at the command line. See man kill for a list or a pointer to the C header which has the list (it's usually called signal.h). I choose 2 (INT), which users get at the command line with CTRL-C. I know HTTP::Server::Simple doesn't trap that, because I have a manual trap for it in one of my scripts.

The Third Camel says this works differently for Windows, but the Third Camel is a few years old (published in 2000). It claims that on Windows, the kill command causes the process to exit with the signal number as its status (unless the signal is zero, which is not fatal). But that might be just what you want.

Phil


In reply to Re: shut down HTTP::SERVER::SIMPLE by philcrow
in thread shut down HTTP::SERVER::SIMPLE by blueberryCoffee

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.