]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Update names of vgdb pipes in documentation. Followup to r12071.
authorFlorian Krohm <florian@eich-krohm.de>
Mon, 3 Oct 2011 16:55:26 +0000 (16:55 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Mon, 3 Oct 2011 16:55:26 +0000 (16:55 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@12088

coregrind/m_gdbserver/README_DEVELOPERS

index 782ce1c5938a2895c39166d41d0d10beaab2fa9a..153660f325851fbe7da8b506d4e3112a9b71aed5 100644 (file)
@@ -125,17 +125,18 @@ is implemented.
 How is the Valgrind gdbserver receiving commands/packets from gdb ?
 -------------------------------------------------------------------
 The embedded gdbserver reads gdb commands on a named pipe having
-(by default) the name   /tmp/vgdb-pipe-from-vgdb-to-%d
-where %d will be replaced by the pid.
+(by default) the name   /tmp/vgdb-pipe-from-vgdb-to-PID-by-USER-on-HOST
+where PID, USER, and HOST will be replaced by the actual pid, the user id,
+and the host name, respectively.
 The embedded gdbserver will reply to gdb commands on a named pipe
-/tmp/vgdb-pipe-to-vgdb-from-%d
+/tmp/vgdb-pipe-to-vgdb-from-PID-by-USER-on-HOST
 
 gdb does not speak directly with gdbserver in valgrind: a relay application
 called vgdb is needed between gdb and the valgrind-ified process.
 gdb writes commands on the stdin of vgdb. vgdb reads these
-commands and writes them on FIFO /tmp/vgdb-pipe-from-vgdb-to-%d.
-vgdb reads replies on FIFO /tmp/vgdb-pipe-to-vgdb-from-%d and writes
-them on its stdout. 
+commands and writes them on FIFO /tmp/vgdb-pipe-from-vgdb-to-PID-by-USER-on-HOST.
+vgdb reads replies on FIFO /tmp/vgdb-pipe-to-vgdb-from-PID-by-USER-on-HOST
+and writes them on its stdout. 
 
 Note: The solution of named pipes was preferred to tcp ip connections as
 it allows a discovery of which valgrind-ified processes are ready to accept