aboutsummaryrefslogtreecommitdiff
path: root/devel/pty
Commit message (Collapse)AuthorAgeFilesLines
* - Update to 1.2Thomas Abthorpe2011-04-162-4/+3
| | | | | | | | PR: ports/156385 Submitted by: maintainer Notes: svn path=/head/; revision=272781
* - Update to 1.1Thomas Abthorpe2007-10-062-5/+8
| | | | | | | | | PR: ports/116981 Submitted by: James Bailie <jimmy mammothcheese.ca> (maintainer) Approved by: clsung (mentor, implicit) Notes: svn path=/head/; revision=201017
* pty is a tool to help debug console programs which take the terminal out ofMartin Wilke2007-09-073-0/+38
canonical mode, by allowing the program being debugged and the debugger to run on separate terminal devices. To use pty, the programmer changes to the terminal device where he or she wishes to interact with the program to be debugged, and at the shell prompt, runs pty with no arguments. Pty will print out the filename of the slave side of the pseudo-terminal it has opened. Inside the debugger, running in another terminal device, one then redirects the program to be debugged's IO to the slave (tty command of gdb). When you are finished using pty, you must manually kill it. When pty starts it prints out its pid. WWW: http://www.mammothcheese.ca/munger.html -- James Bailie <jimmy@mammothcheese.ca> PR: ports/116179 Submitted by: James Bailie <jimmy at mammothcheese.ca> Notes: svn path=/head/; revision=199035