← Index
NYTProf Performance Profile   « block view • line view • sub view »
For xt/tapper-mcp-scheduler-with-db-longrun.t
  Run on Tue May 22 17:18:39 2012
Reported on Tue May 22 17:22:53 2012

Filename/2home/ss5/perl5/perlbrew/perls/perl-5.12.3/lib/5.12.3/x86_64-linux/File/Spec.pm
StatementsExecuted 13 statements in 213µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11111µs13µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
1118µs53µsFile::Spec::::BEGIN@4File::Spec::BEGIN@4
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package File::Spec;
2
3324µs215µs
# spent 13µs (11+2) within File::Spec::BEGIN@3 which was called: # once (11µs+2µs) by Log::Log4perl::Util::BEGIN@3 at line 3
use strict;
# spent 13µs making 1 call to File::Spec::BEGIN@3 # spent 2µs making 1 call to strict::import
4393µs297µs
# spent 53µs (8+44) within File::Spec::BEGIN@4 which was called: # once (8µs+44µs) by Log::Log4perl::Util::BEGIN@3 at line 4
use vars qw(@ISA $VERSION);
# spent 53µs making 1 call to File::Spec::BEGIN@4 # spent 44µs making 1 call to vars::import
5
61500ns$VERSION = '3.33';
7113µs$VERSION = eval $VERSION;
# spent 2µs executing statements in string eval
8
917µsmy %module = (MacOS => 'Mac',
10 MSWin32 => 'Win32',
11 os2 => 'OS2',
12 VMS => 'VMS',
13 epoc => 'Epoc',
14 NetWare => 'Win32', # Yes, File::Spec::Win32 works on NetWare.
15 symbian => 'Win32', # Yes, File::Spec::Win32 works on symbian.
16 dos => 'OS2', # Yes, File::Spec::OS2 works on DJGPP.
17 cygwin => 'Cygwin');
18
19
2012µsmy $module = $module{$^O} || 'Unix';
21
22157µsrequire "File/Spec/$module.pm";
23110µs@ISA = ("File::Spec::$module");
24
2518µs1;
26
27__END__