← 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
StatementsExecuted 0 statements in 0s
Subroutines
Calls P F Exclusive
Time
Inclusive
Time
Subroutine
0000s0sFile::Spec::::BEGIN@3File::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
1package File::Spec;
2
3use strict;
4
5our $VERSION = '3.78';
6$VERSION =~ tr/_//d;
7
8my %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
19my $module = $module{$^O} || 'Unix';
20
21require "File/Spec/$module.pm";
22our @ISA = ("File::Spec::$module");
23
241;
25
26__END__