--- AnyEvent/lib/AnyEvent.pm 2010/08/31 23:32:40 1.332 +++ AnyEvent/lib/AnyEvent.pm 2010/12/03 18:39:06 1.340 @@ -48,7 +48,9 @@ =head1 SUPPORT -There is a mailinglist for discussing all things AnyEvent, and an IRC +An FAQ document is available as L. + +There also is a mailinglist for discussing all things AnyEvent, and an IRC channel, too. See the AnyEvent project page at the B() while @post_detect; @@ -1727,6 +1733,12 @@ our @ISA = AnyEvent::CondVar::Base::; +# only to be used for subclassing +sub new { + my $class = shift; + bless AnyEvent->condvar (@_), $class +} + package AnyEvent::CondVar::Base; #use overload @@ -2654,6 +2666,10 @@ =head1 SEE ALSO +Tutorial/Introduction: L. + +FAQ: L. + Utility functions: L. Event modules: L, L, L, L, L, @@ -2669,10 +2685,9 @@ Asynchronous DNS: L. -Coroutine support: L, L, L, -L, +Thread support: L, L, L, L. -Nontrivial usage examples: L, L, +Nontrivial usage examples: L, L, L.