I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2009-06-19 05:55:19-07 by markdv1
small bug in cond_wait documentation?
I was reading the documentation section for cond_wait and I think there might be a small bug there.

If "The cond_wait function takes a locked variable as a parameter.." then shouldn't the cond_wait in the given example
{ lock($counter); cond_wait($count) until $counter == 0; }
be cond_wait($counter) instead of cond_wait($count)?
Direct Responses: 11004 | Write a response