Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Re: Re: PerlDebug and mysterious Term::Rendezvous

by neuroball (Pilgrim)
on Jan 30, 2004 at 17:05 UTC ( [id://325305]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: PerlDebug and mysterious Term::Rendezvous
in thread PerlDebug and mysterious Term::Rendezvous

Hm... I think so. I just had to do some research to find out how to overcome the terminal from taking over the input/output of the debugger.

You have to do the following:

  • Figure out what your debug options will be and either write the options to the .perldb file or add it to the PERLDB_OPTS environment variable like so:
    • .perldb
      parse_options("TTY=/dev/ttyp3 LineInfo=/dev/ttyp4 ReadLine=1");
    • terminal
      PERLDB_OPTS="TTY=/dev/ttyp3 LineInfo=/dev/ttyp4 ReadLine=1" perl -d your_script.pl
  • TTY is the terminal you want to debug in.
  • LineInfo is the terminal you want to see the output of your script in
  • ReadLine signals that you want to step through your script
  • Though for the whole thing to work you have to send the terminal you want to debug in to sleep before you start to debug. I.e. Go to ttyp3 and give it a command of sleep 1000000.

/oliver/

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://325305]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (8)
As of 2024-04-25 11:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found