← Index
NYTProf Performance Profile
«
line view
»
For /usr/local/libexec/sympa/task_manager-debug.pl
Run on Tue Jun 1 22:32:51 2021
Reported on Tue Jun 1 22:35:03 2021
Filename
/usr/local/lib/perl5/5.32/mach/File/Spec.pm
Statements
Executed 0 statements in 0s
Subroutines
Calls
P
F
Exclusive
Time
Inclusive
Time
Subroutine
0
0
0
0s
0s
File::Spec::::BEGIN@3
File::Spec::
BEGIN@3
Call graph for these subroutines as a
Graphviz
dot language file
.
Line
State
ments
Time
on line
Calls
Time
in subs
Code
1
package File::Spec;
2
3
use strict;
4
5
our $VERSION = '3.78';
6
$VERSION =~ tr/_//d;
7
8
my %module = (
9
MSWin32 => 'Win32',
10
os2 => 'OS2',
11
VMS => 'VMS',
12
NetWare => 'Win32', # Yes, File::Spec::Win32 works on NetWare.
13
symbian => 'Win32', # Yes, File::Spec::Win32 works on symbian.
14
dos => 'OS2', # Yes, File::Spec::OS2 works on DJGPP.
15
cygwin => 'Cygwin',
16
amigaos => 'AmigaOS');
17
18
19
my $module = $module{$^O} || 'Unix';
20
21
require "File/Spec/$module.pm";
22
our @ISA = ("File::Spec::$module");
23
24
1;
25
26
__END__