The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

debugServer.pl - The server to centralize debugging informations

VERSION

version 1.001

SYNOPSIS

        #on command-line
        
        #... first launch the debug server (only once)
        
        tom@house:debugserver.pl 
        
        server is started...
        
        #now launch your script(s) to debug 
        
        tom@house:debugagent.pl path/to/scripttodebug.pl #will automatically register to debug server
        tom@house:debugagent.pl path/to/scripttodebug2.pl

...now you can send debug commands with the Devel::Debug::Server::Client module

DESCRIPTION

This script launch the debug server which centralizes all debugging informations and commands for all processes. This server can be driven by a client process which uses Devel::Debug::Server::Client to communicate.

Breakpoints are set/unset for all processes. All command are asynchronous, which means you send a command to the server which will aknowledge you immediatly. You need to ask the server later to see the process state changed.

SEE ALSO

See Devel::Debug::Server for more informations.

AUTHOR

Jean-Christian HASSLER <hasslerjeanchristian at gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2012 by Jean-Christian HASSLER.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.