home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #1 / NN_1993_1.iso / spool / comp / lang / c / 19494 < prev    next >
Encoding:
Text File  |  1993-01-10  |  1.4 KB  |  32 lines

  1. Newsgroups: comp.lang.c
  2. Path: sparky!uunet!emba-news.uvm.edu!griffin!ertle
  3. From: ertle@kira.uvm.edu The Sneaky Devil
  4. Subject: Re: Debugging with 2 terminals. HELP!!!!!
  5. Message-ID: <ertle.726673028@griffin>
  6. Sender: news@uvm.edu
  7. Organization: University of Vermont -- Division of EMBA Computer Facility
  8. References: <1993Jan8.213710.4079@netcom.com> <1993Jan10.060451.19694@spillman.uucp>
  9. Distribution: usa
  10. Date: Sun, 10 Jan 1993 13:37:08 GMT
  11. Lines: 19
  12.  
  13. In <1993Jan10.060451.19694@spillman.uucp> tye@spillman.uucp (E. Tye McQueen) writes:
  14.  
  15. >herring@netcom.com (John Herring) writes:
  16. >)Does anyone know of a debugger that will allow me to run the program on
  17. >)one terminal and debug using the debugger in another terminal?
  18.  
  19. dbx and gdb ( and possibly others ) allow you to attach a process that
  20. is already running using the "attach" command, I believe.  So, start
  21. the process on one terminal ( maybe put in code to get input just
  22. before the part your interested in so it will stop there first ), then
  23. start the debugger on the other terminal and type "attach pid" where
  24. "pid" is the process id of the prorogram you want to debug.  You can
  25. interrupt the execution of the process with ctrl-c.  Good luck!
  26.  
  27. --
  28. James A. Ertle                       |... but she's being so
  29. ertle@{hal|sal|kira|griffin}.uvm.edu |DIFFICULT!!!
  30. UVM's EMBA Computer Facility         |        - The Beast
  31. Burlington, Vt. USA                  |    
  32.