extend perl debugger

2005-11-22 Thread Michael Seele
hi, i write on a (java) gui for the perl debugger and have a problem: when i use the perl debugger i can suspend the execution with CTRL+C. i talk over a socket with the perl debugger process and the problem is that i can't send CTRL+C from the java programm to the perl process. for this reas

get already loaded files

2005-11-22 Thread Michael Seele
hi, i want to know in a debugg session which files are already loaded(so i can set a breakpoint) and which files are not loaded yet(so i can set "b load "). is there a chance to got a list of allready loaded files? with which command? thx mseele -- G & H Softwareentwicklung GmbH Tel.: +

Re: get already loaded files

2005-11-22 Thread Michael Seele
ok, i found a solution: "x %INC;" returns a list of all loaded modules and its referenced files... Michael Seele wrote: hi, i want to know in a debugg session which files are already loaded(so i can set a breakpoint) and which files are not loaded yet(so i can set "b load "). is there a cha

Re: extend perl debugger

2005-11-22 Thread Michael Seele
thank you for your answer! i will try it (and be confident that it works!)... Joe McMahon wrote: On Tue, 22 Nov 2005, Michael Seele wrote: hi, i write on a (java) gui for the perl debugger and have a problem: when i use the perl debugger i can suspend the execution with CTRL+C. i talk ove