← Index
NYTProf Performance Profile   « block view • line view • sub view »
For /usr/local/src/github.com/foswiki/core/bin/view
  Run on Sun Dec 4 17:17:59 2011
Reported on Sun Dec 4 17:26:38 2011

Filename/usr/share/perl/5.14/locale.pm
StatementsExecuted 5 statements in 30µs
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
22216µs16µ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
312µsour $VERSION = '1.00';
4
511µs$locale::hint_bits = 0x4;
6
7
# spent 16µs within locale::import which was called 2 times, avg 8µs/call: # once (10µs+0s) by Foswiki::Contrib::MailerContrib::WebNotify::BEGIN@17 at line 17 of /usr/local/src/github.com/foswiki/core/lib/Foswiki/Contrib/MailerContrib/WebNotify.pm # once (6µs+0s) by Assert::BEGIN@19 at line 19 of /usr/local/src/github.com/foswiki/core/lib/Assert.pm
sub import {
8222µs $^H |= $locale::hint_bits;
9}
10
11sub unimport {
12 $^H &= ~$locale::hint_bits;
13}
14
1515µs1;