Using Win32::GUI on Strawberry perl 5.16.2. According to the FAQ (http://perl-win32-gui.sourceforge.net/cgi-bin/docs.cgi?doc=userguide-faq) the way to have a long-running "background" process not block the GUI is to do a fork(), and have the child do the work.

I've tested this and it works, but I'm unclear about how to pass a message from the parent to the child in this situation. If I was on UNIX, I'd just do something like

kill USR1 $childpid

but this is Windows, not UNIX, and apparently the return value of fork() is a "pseudo-thread ID" which perlfork says can by used by kill() EXCEPT THAT "the signal will not be delivered while the pseudo-process is blocked by a system call". Well, it just so happens that the child's innermost loop is a select() statement, so from a practical standpoint the child has just shy of a snowball's chance of ever receiving the signal sent by kill (I tested it). So my problem remains: given that fork() returns a "pseudo-thread ID" instead of a real PID or TID, how do I send a message from the parent to the child?


In reply to How to communicate w/ forked child under Strawberry by shadrack

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.