← Index
NYTProf Performance Profile   « line view »
For t/bug-md-11.t
  Run on Fri Mar 8 13:27:24 2024
Reported on Fri Mar 8 13:30:23 2024

Filename/home/micha/.plenv/versions/5.38.2/lib/perl5/site_perl/5.38.2/Test2/Event/Waiting.pm
StatementsExecuted 10 statements in 145µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11110µs12µsTest2::Event::Waiting::::BEGIN@2Test2::Event::Waiting::BEGIN@2
1117µs7µsTest2::Event::Waiting::::BEGIN@8Test2::Event::Waiting::BEGIN@8
1113µs20µsTest2::Event::Waiting::::BEGIN@3Test2::Event::Waiting::BEGIN@3
1113µs24µsTest2::Event::Waiting::::BEGIN@9Test2::Event::Waiting::BEGIN@9
0000s0sTest2::Event::Waiting::::facet_dataTest2::Event::Waiting::facet_data
0000s0sTest2::Event::Waiting::::globalTest2::Event::Waiting::global
0000s0sTest2::Event::Waiting::::summaryTest2::Event::Waiting::summary
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package Test2::Event::Waiting;
2218µs213µs
# spent 12µs (10+2) within Test2::Event::Waiting::BEGIN@2 which was called: # once (10µs+2µs) by Test2::API::BEGIN@98 at line 2
use strict;
# spent 12µs making 1 call to Test2::Event::Waiting::BEGIN@2 # spent 2µs making 1 call to strict::import
3234µs236µs
# spent 20µs (3+17) within Test2::Event::Waiting::BEGIN@3 which was called: # once (3µs+17µs) by Test2::API::BEGIN@98 at line 3
use warnings;
# spent 20µs making 1 call to Test2::Event::Waiting::BEGIN@3 # spent 17µs making 1 call to warnings::import
4
51300nsour $VERSION = '1.302198';
6
7
8219µs17µs
# spent 7µs within Test2::Event::Waiting::BEGIN@8 which was called: # once (7µs+0s) by Test2::API::BEGIN@98 at line 8
BEGIN { require Test2::Event; our @ISA = qw(Test2::Event) }
# spent 7µs making 1 call to Test2::Event::Waiting::BEGIN@8
9272µs246µs
# spent 24µs (3+21) within Test2::Event::Waiting::BEGIN@9 which was called: # once (3µs+21µs) by Test2::API::BEGIN@98 at line 9
use Test2::Util::HashBase;
# spent 24µs making 1 call to Test2::Event::Waiting::BEGIN@9 # spent 21µs making 1 call to Test2::Util::HashBase::import
10
11sub global { 1 };
12
13sub summary { "IPC is waiting for children to finish..." }
14
15sub facet_data {
16 my $self = shift;
17
18 my $out = $self->common_facet_data;
19
20 push @{$out->{info}} => {
21 tag => 'INFO',
22 debug => 0,
23 details => $self->summary,
24 };
25
26 return $out;
27}
28
2912µs1;
30
31__END__