The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package TestAPR::threadrwlock;

use strict;
use warnings FATAL => 'all';

use Apache::Test;
use Apache::TestUtil;

use Apache2::Const -compile => 'OK';

use TestAPRlib::threadrwlock;

sub handler {
    my $r = shift;

    my $tests = TestAPRlib::threadrwlock::num_of_tests();
    plan $r, tests => $tests, need_threads;

    TestAPRlib::threadrwlock::test();

    Apache2::Const::OK;
}

1;