Trying a simple exercise as following:
Problem: 3 threads accessing & manipulating a global variable.
Conditions:
Thread 1: should set the variable to a non-zero value if it sees the previous value as zero.
Thread 2: should set the variable to zero if it sees a non-zero value.
Thread 3: Simply prints the variable but, only when it changes from zero to non-zero or vice versa. It should not print 2 zeros or, same non-zero number twice.
Sub-Conditions:
The global variable will be set to 0 at the start.
The threads should not step on each other.
The non-zero values can be randomly generated
My solution so far is:
use threads;
use threads::shared;
use Thread::Queue;
my $a :shared;
$a = 0;
my $q = Thread::Queue->new();
sub set_positive {
while (1) {
lock $a;
lock $q;
if ($a == 0) {
$a = int(rand() * 100);
$q->enqueue($a);
print "At set_positive: $a\n";
sleep(1);
cond_broadcast($a);
} else {
cond_wait($a)
}
}
}
sub set_zero {
while (1) {
lock $a;
lock $q;
if ($a > 0) {
$a = 0;
$q->enqueue($a);
print "At set_zero: $a\n";
sleep(1);
cond_broadcast($a);
} else {
cond_wait($a)
}
}
}
sub printer {
while (1) {
lock $a;
lock $q;
my ($v_a, $v_b) = $q->dequeue(2);
print "At printer $v_a $v_b ",$a, $/;
sleep(1);
}
}
my @threads = map threads->create($_), qw( set_positive set_zero print
+er);
$_->join for @threads;
My solution hits some racing condition due to which the program hangs. Your suggestions are appreciated
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.