← 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:07 2013

Filename/usr/share/perl/5.10/locale.pm
StatementsExecuted 4 statements in 13µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
1114µs4µslocale::::importlocale::import
0000s0slocale::::unimportlocale::unimport
Call graph for these subroutines as a Graphviz dot language file.
Line State
ments
Time
on line
Calls Time
in subs
Code
1package locale;
2
31800nsour $VERSION = '1.00';
4
51300ns$locale::hint_bits = 0x4;
6
7
# spent 4µs within locale::import which was called: # once (4µs+0s) by Template::Filters::BEGIN@24 at line 24 of Template/Filters.pm
sub import {
819µs $^H |= $locale::hint_bits;
9}
10
11sub unimport {
12 $^H &= ~$locale::hint_bits;
13}
14
1514µs1;