← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/share/koha/opac/cgi-bin/opac/opac-search.pl
  Run on Tue Oct 15 11:58:52 2013
Reported on Tue Oct 15 12:01:02 2013

Filename/usr/share/perl/5.10/File/Spec.pm
StatementsExecuted 13 statements in 351µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
11118µs23µsFile::Spec::::BEGIN@3File::Spec::BEGIN@3
11110µs64µ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
3332µs229µs
# spent 23µs (18+5) within File::Spec::BEGIN@3 which was called: # once (18µs+5µs) by IO::File::BEGIN@12 at line 3
use strict;
# spent 23µs making 1 call to File::Spec::BEGIN@3 # spent 6µs making 1 call to strict::import
4398µs2118µs
# spent 64µs (10+54) within File::Spec::BEGIN@4 which was called: # once (10µs+54µs) by IO::File::BEGIN@12 at line 4
use vars qw(@ISA $VERSION);
# spent 64µs making 1 call to File::Spec::BEGIN@4 # spent 54µs making 1 call to vars::import
5
61600ns$VERSION = '3.30';
7124µs$VERSION = eval $VERSION;
# spent 3µs executing statements in string eval
8
918µ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
1913µsmy $module = $module{$^O} || 'Unix';
20
211157µsrequire "File/Spec/$module.pm";
22114µs@ISA = ("File::Spec::$module");
23
24116µs1;
25
26__END__