Dear monks,

I am trying to synchronise two processes (recording and playback) so that I can be reasonably certain that each begins at a similar time to the other---after any necessary initialisation required for each. I have tried to do this with threads, using a number of signalling schemes, however something is going wrong and I was wondering if anybody had a quick solution. Alternatively, perhaps there is a better way to achieve the same goal.

Here is a mockup:

sub player { # ... Initialisation code ... { lock $counter; ++$sig_counter; cond_wait( $sig_counter ) until $sig_counter == 3; } # ... Playing code ... } sub recorder { # ... Initialisation code ... { lock $counter; ++$sig_counter; cond_wait( $sig_counter ) until $sig_counter == 3; } # ... Recording code ... } $sig_counter = 0; $player_thread = threads->create( \&player ); $recorder_thread = threads->create( \&recorder ); { # This block should wait for threads to init lock $sig_counter; cond_wait( $sig_counter ) until $sig_counter == 2; } { # This block should signal subs to start main code lock $sig_counter; ++$sig_counter; }

I've also tried similar things with explicit cond_signal for each state instead of the counter (i.e. player_ready, recorder_ready, all_go, etc.), but everything stops once the threads are done initialising and signalling to the 'parent'.

Best regards, Jason


In reply to Synchronising threads with signals (or not) by forestcreature

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.