| Filename | /usr/share/perl/5.10/SelectSaver.pm |
| Statements | Executed 9 statements in 289µs |
| Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
|---|---|---|---|---|---|
| 1 | 1 | 1 | 23µs | 97µs | SelectSaver::BEGIN@6 |
| 1 | 1 | 1 | 19µs | 151µs | SelectSaver::BEGIN@7 |
| 0 | 0 | 0 | 0s | 0s | SelectSaver::DESTROY |
| 0 | 0 | 0 | 0s | 0s | SelectSaver::new |
| Line | State ments |
Time on line |
Calls | Time in subs |
Code |
|---|---|---|---|---|---|
| 1 | package SelectSaver; | ||||
| 2 | |||||
| 3 | 1 | 2µs | our $VERSION = '1.02'; | ||
| 4 | |||||
| 5 | 1 | 44µs | require 5.000; | ||
| 6 | 3 | 41µs | 2 | 171µs | # spent 97µs (23+74) within SelectSaver::BEGIN@6 which was called:
# once (23µs+74µs) by IO::File::BEGIN@10 at line 6 # spent 97µs making 1 call to SelectSaver::BEGIN@6
# spent 74µs making 1 call to Exporter::import |
| 7 | 3 | 196µs | 2 | 283µs | # spent 151µs (19+132) within SelectSaver::BEGIN@7 which was called:
# once (19µs+132µs) by IO::File::BEGIN@10 at line 7 # spent 151µs making 1 call to SelectSaver::BEGIN@7
# spent 132µs making 1 call to Exporter::import |
| 8 | |||||
| 9 | sub new { | ||||
| 10 | @_ >= 1 && @_ <= 2 or croak 'usage: SelectSaver->new( [FILEHANDLE] )'; | ||||
| 11 | my $fh = select; | ||||
| 12 | my $self = bless \$fh, $_[0]; | ||||
| 13 | select qualify($_[1], caller) if @_ > 1; | ||||
| 14 | $self; | ||||
| 15 | } | ||||
| 16 | |||||
| 17 | sub DESTROY { | ||||
| 18 | my $self = $_[0]; | ||||
| 19 | select $$self; | ||||
| 20 | } | ||||
| 21 | |||||
| 22 | 1 | 6µs | 1; |