aboutsummaryrefslogtreecommitdiff
path: root/doc/_attic_
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2016-07-05 21:47:28 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2016-07-05 22:13:26 +0200
commit2555bd5ac6c975b8809d36ef90daaa8f71a8e0ba (patch)
tree5fb16545a2c4fe20e54b9581c52eafd86de94e37 /doc/_attic_
parent381706aa279799201d5750bb971cac91e05db995 (diff)
downloadnx-libs-2555bd5ac6c975b8809d36ef90daaa8f71a8e0ba.tar.gz
nx-libs-2555bd5ac6c975b8809d36ef90daaa8f71a8e0ba.tar.bz2
nx-libs-2555bd5ac6c975b8809d36ef90daaa8f71a8e0ba.zip
documentation: Move README-VALGRIND out of doc/_attic_/ folder to doc/nxproxy/.
Diffstat (limited to 'doc/_attic_')
-rw-r--r--doc/_attic_/NoMachine_documentation_files/nxproxy_README-VALGRIND39
1 files changed, 0 insertions, 39 deletions
diff --git a/doc/_attic_/NoMachine_documentation_files/nxproxy_README-VALGRIND b/doc/_attic_/NoMachine_documentation_files/nxproxy_README-VALGRIND
deleted file mode 100644
index ce4d513a4..000000000
--- a/doc/_attic_/NoMachine_documentation_files/nxproxy_README-VALGRIND
+++ /dev/null
@@ -1,39 +0,0 @@
-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.