From: Steffen Mueller Date: Sun, 31 May 2009 20:02:33 +0000 (+0200) Subject: Mention Devel::NYTProf in perldebug X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=20f91e418dfa8bdf6cf78614bfebebc28a7613ee;p=p5sagit%2Fp5-mst-13.2.git Mention Devel::NYTProf in perldebug In the short section about profiling with Devel::DProf, we now mention that other profilers (such as Devel::NYTProf) are available from CPAN. --- diff --git a/pod/perldebug.pod b/pod/perldebug.pod index a58e835..cf1fa23 100644 --- a/pod/perldebug.pod +++ b/pod/perldebug.pod @@ -1104,7 +1104,7 @@ X X X If you wish to supply an alternative debugger for Perl to run, just invoke your script with a colon and a package argument given to the B<-d> flag. The most popular alternative debuggers for Perl is the -Perl profiler. Devel::DProf is now included with the standard Perl +Perl profiler. Devel::DProf is included with the standard Perl distribution. To profile your Perl program in the file F, just type: @@ -1113,7 +1113,8 @@ just type: When the script terminates the profiler will dump the profile information to a file called F. A tool like B, also supplied with the standard Perl distribution, can be used to -interpret the information in that profile. +interpret the information in that profile. More powerful profilers, +such as C are available from the CPAN. =head1 Debugging regular expressions X