Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > adbf6a366ea6a381721c4e64e63e94c8 > files > 62

perl-Devel-NYTProf-5.60.0-2.mga4.x86_64.rpm

# for testing exclusive time calculations
# use with NYTPROF=trace=3
sub a {
    sleep 2;
    b();
}
sub b {
    sleep 5;
    c();
}
sub c {
    sleep 3;
}
a();