Search results for "perldebguts"
perldebguts - Guts of Perl debugging
This is not perldebug, which tells you how to use the debugger. This manpage describes low-level details concerning the debugger's internals, which range from difficult to impossible to understand for anyone who isn't incredibly intimate with Perl's ...
RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC - Search in distribution- perlsub - Perl subroutines
- perlretut - Perl regular expressions tutorial
- perlrun - how to execute the Perl interpreter
- 12 more results from perl »
Devel::RemoteTrace - Attachable call trace of perl scripts (a.k.a) perldebguts by example
The purpose of this module is twofold. First of all it solves a real problem taht seems hard with the standard debugger: Trace the execution of a long running process when it stops serving requests. The secondary purpose is to be an easy understandab...
PMAKHOLM/Devel-RemoteTrace-0.3 - 20 Apr 2009 06:18:16 UTC - Search in distribution
perl - El intérprete del lenguaje Perl 5
ENELL/POD2-ES-5.24.0.5
-
01 Jan 2017 21:24:12 UTC
-
Search in distribution
perlfaq3 - Programming Tools
This section of the FAQ answers questions related to programmer tools and programming support. How do I do (anything)? Have you looked at CPAN (see perlfaq2)? The chances are that someone has already written a module that can solve your problem. Have...
ETHER/perlfaq-5.20210520 - 20 May 2021 04:17:26 UTC - Search in distribution
Devel::Agent - Agent like debugger interface
For years people in the perl commnity have been asking for a way to do performance monitoring and tracing of runtime production code. This module attempts to fill this role by implementing a stripped down debugger that is intended to provide an agent...
AKALINUX/Devel-Agent-0.007 - 29 Dec 2021 05:47:35 UTC - Search in distribution
Devel::ebug - A simple, extensible Perl debugger
A debugger is a computer program that is used to debug other programs. Devel::ebug is a simple, extensible Perl debugger with a clean API. Using this module, you may easily write a Perl debugger to debug your programs. Alternatively, it comes with an...
PLICEASE/Devel-ebug-0.64 - 10 Jul 2021 21:45:00 UTC - Search in distribution
Devel::hdb - Perl debugger as a web page and REST service
hdb is a Perl debugger that uses HTML and javascript to implement the GUI. This front-end talks to a REST service provided by the debugger running with the Perl code....
BRUMMETT/Devel-hdb-0.25 - 23 Dec 2018 00:22:43 UTC - Search in distribution
Devel::DumpTrace::PPI - PPI-based version of Devel::DumpTrace
"Devel::DumpTrace::PPI" is a near drop-in replacement to Devel::DumpTrace that uses the PPI module for parsing the source code. With PPI, this module overcomes some of the limitations of the original "Devel::DumpTrace" parser and makes a few other fe...
MOB/Devel-DumpTrace-0.29 - 02 May 2019 19:22:28 UTC - Search in distribution
Devel::RingBuffer - Shared memory ring buffers for Perl scripts diagnosis/debug
Provides shared memory structures (using memory mapped files via IPC::Mmap) to be used by diagnostic and debugger applications for Perl scripts (see Devel::STrace). Using XS/C code to maximize performance, creates a set of ringbuffers with a configur...
DARNOLD/Devel-RingBuffer-0.31 - 27 Aug 2006 20:57:21 UTC - Search in distribution- Devel::RingBuffer::Ring - Single ring of a Devel::RingBuffer
Vim::Debug - Perl wrapper around a command line debugger
If you are new to Vim::Debug please read the user manual, Vim::Debug::Manual, first. Vim::Debug is an object oriented wrapper around the Perl command line debugger. In theory the debugger could be for any language -- not just Perl. But only Perl is s...
KABLAMO/Vim-Debug-0.904 - 25 May 2013 22:58:25 UTC - Search in distribution
Sub::Metadata - read and write subroutine metadata
This module contains functions that examine and modify data that Perl attaches to subroutines....
ZEFRAM/Sub-Metadata-0.002 - 25 Jul 2017 08:53:30 UTC - Search in distribution
Devel::STrace - strace-like runtime call trace for Perl applications
Provides a strace/truss-like runtime call monitor for Perl applications. Note that, while strace/truss only dumps system calls, Devel::STrace dumps all calls to Perl subs on the application's stack. Also note that Devel::STrace cannot trace non-Perl ...
DARNOLD/Devel-STrace-0.31 - 27 Aug 2006 20:57:32 UTC - Search in distribution
Devel::Quick - Write single-step debugger one-liners easily (DB::DB)
This module allows you to write simple on-the-fly "DB::DB" line debuggers easily. It injects the following code around the code passed to its import method and eval's it in: package DB; use strict; use warnings; $DB::single = 1; sub DB { # Get who ca...
WOLFSAGE/Devel-Quick-0.08 - 25 Jun 2014 17:19:03 UTC - Search in distribution
Devel::Debug::DBGp - Perl DBGp debugger (derived from Komodo remote debugging helper)
A modified version of ActiveState's Komodo remote debugging helper. It aims to be a compliant implementation of the DBGp protocol <http://xdebug.org/docs-dbgp.php> by default, but with the option of emulating Xdebug-specific quirks, for compatibility...
MBARBON/Devel-Debug-DBGp-0.22 - 14 May 2018 19:14:08 UTC - Search in distribution
Devel::FastProf - "fast" perl per-line profiler
"Devel::FastProf" is a perl per-line profiler. What that means is that it can tell you how much time is spent on every line of a perl script (the standard Devel::DProf is a per-subroutine profiler). I have been the maintainer of Devel::SmallProf for ...
SALVA/Devel-FastProf-0.08 - 11 May 2007 17:48:08 UTC - Search in distribution
GRID::Machine::remotedebugtut - A simple methodology to debug remote Perl programs with GRID::Machine
CASIANO/GRID-Machine-0.127
-
14 Jun 2011 09:11:14 UTC
-
Search in distribution
Devel::TraceRun - Shows all the function calls and returns in a Perl program
Figuring out a large system's workings is hard. Figuring out why it's not working, and where it's going wrong, is even harder. This tool produces an indented list of all function calls with parameters (in a very very concise format) and return values...
ETJ/Devel-TraceRun-0.003 - 10 Jul 2020 19:46:37 UTC - Search in distribution
Devel::NYTProf::ReadStream - Read Devel::NYTProf data file as a stream
This module provide a low level interface for reading the contents of nytprof.out files (Devel::NYTProf data files) as a stream of chunks. Currently the module only provide a single function: for_chunks( \&callback, %opts ) This function will read th...
JKEENAN/Devel-NYTProf-6.12 - 16 Nov 2022 02:15:03 UTC - Search in distribution