| Filename | /usr/share/perl/5.26/warnings/register.pm | 
| Statements | Executed 8 statements in 13µs | 
| Calls | P | F | Exclusive Time | Inclusive Time | Subroutine | 
|---|---|---|---|---|---|
| 1 | 1 | 1 | 8µs | 88µs | warnings::register::import | 
| 0 | 0 | 0 | 0s | 0s | warnings::register::mkMask | 
| Line | State ments | Time on line | Calls | Time in subs | Code | 
|---|---|---|---|---|---|
| 1 | package warnings::register; | ||||
| 2 | |||||
| 3 | 1 | 500ns | our $VERSION = '1.04'; | ||
| 4 | 1 | 500ns | require warnings; | ||
| 5 | |||||
| 6 | # left here as cruft in case other users were using this undocumented routine | ||||
| 7 | # -- rjbs, 2010-09-08 | ||||
| 8 | sub mkMask | ||||
| 9 | { | ||||
| 10 | my ($bit) = @_; | ||||
| 11 | my $mask = ""; | ||||
| 12 | |||||
| 13 | vec($mask, $bit, 1) = 1; | ||||
| 14 | return $mask; | ||||
| 15 | } | ||||
| 16 | |||||
| 17 | sub import | ||||
| 18 | # spent 88µs (8+80) within warnings::register::import which was called:
#    once (8µs+80µs) by constant::BEGIN@4 at line 4 of constant.pm | ||||
| 19 | 1 | 300ns | shift; | ||
| 20 | 1 | 500ns | my @categories = @_; | ||
| 21 | |||||
| 22 | 1 | 3µs | my $package = (caller(0))[0]; | ||
| 23 | 1 | 1µs | 1 | 80µs | warnings::register_categories($package);     # spent    80µs making 1 call to warnings::register_categories | 
| 24 | |||||
| 25 | 1 | 4µs | warnings::register_categories($package . "::$_") for @categories; | ||
| 26 | } | ||||
| 27 | 1 | 4µs | 1; | ||
| 28 | __END__ |