aboutsummaryrefslogtreecommitdiff
path: root/nxproxy/README-VALGRIND
diff options
context:
space:
mode:
authorReinhard Tartler <siretart@tauware.de>2011-11-13 09:53:38 +0100
committerReinhard Tartler <siretart@tauware.de>2011-11-13 09:53:38 +0100
commit35472e34809a80b228f2763ef33d58acdb88dcce (patch)
treec8dda8a89bbe74c7fd614c3a4b5c627c39d2a261 /nxproxy/README-VALGRIND
parenta840692edc9c6d19cd7c057f68e39c7d95eb767d (diff)
downloadnx-libs-35472e34809a80b228f2763ef33d58acdb88dcce.tar.gz
nx-libs-35472e34809a80b228f2763ef33d58acdb88dcce.tar.bz2
nx-libs-35472e34809a80b228f2763ef33d58acdb88dcce.zip
Imported nxproxy-3.0.0-4.tar.gznxproxy/3.0.0-4
Summary: Imported nxproxy-3.0.0-4.tar.gz Keywords: Imported nxproxy-3.0.0-4.tar.gz into Git repository
Diffstat (limited to 'nxproxy/README-VALGRIND')
-rw-r--r--nxproxy/README-VALGRIND39
1 files changed, 39 insertions, 0 deletions
diff --git a/nxproxy/README-VALGRIND b/nxproxy/README-VALGRIND
new file mode 100644
index 000000000..ce4d513a4
--- /dev/null
+++ b/nxproxy/README-VALGRIND
@@ -0,0 +1,39 @@
+README-VALGRIND
+---------------
+
+You can run nxproxy (and nxcomp) under the supervision of valgrind
+(a very good memory debugger) by wrapping nxproxy in the following
+script:
+
+<snip>
+#!/bin/bash
+
+# Enable core dumps.
+
+ulimit -c unlimited
+
+# Set this to directory where nxproxy is located.
+
+NXPROXY_DIR=~/NX/nxproxy
+
+# Set this to directory where valgrind is located.
+
+VALGRIND_DIR=/usr/local/bin
+
+exec ${VALGRIND_DIR}/valgrind -v --leak-check=yes --leak-resolution=high \
+ --show-reachable=yes --show-reachable=yes \
+ --suppressions=${NXPROXY_DIR}/nxproxy.supp \
+ --num-callers=16 --logfile-fd=2 \
+\
+${NXPROXY_DIR}/nxproxy $1 $2 $3 $4 $5 $6 $7 $8 $9
+<snip>
+
+Run the following commands on your shell, right in the place where
+the nxproxy executable is to be placed in your setup:
+
+$ cat >nxproxy
+<copy paste the previous lines here>
+$ chmod a+x nxproxy
+
+Output of valgrind will go on stderr, that is in session file, if
+run in NX environment.