summaryrefslogtreecommitdiff
path: root/doc/de/cmdline_options_debug.de.adoc
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2019-03-31 23:53:54 +0200
committerSébastien Helleu <flashcode@flashtux.org>2019-03-31 23:53:54 +0200
commit413aa499cc61ee3ce18c57fc891ecc314b064a9f (patch)
treef94945c37faf0a7aa9ea77d45f0d552ec3d96b9b /doc/de/cmdline_options_debug.de.adoc
parentc469f30be595bcf70feee6e0982961c199f78583 (diff)
downloadweechat-413aa499cc61ee3ce18c57fc891ecc314b064a9f.zip
core: add documentation on command line debug options (in --help and man pages)
Command line debug options are now documented: * --no-dlclose: do not call the function dlclose after plugins are unloaded * --no-gnutls: do not call the init and deinit functions of GnuTLS library * --no-gcrypt: do not call the init and deinit functions of Gcrypt library These options must not be used in production, they're for debug only and can be used with tools like Valgrind or electric-fence.
Diffstat (limited to 'doc/de/cmdline_options_debug.de.adoc')
-rw-r--r--doc/de/cmdline_options_debug.de.adoc16
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/de/cmdline_options_debug.de.adoc b/doc/de/cmdline_options_debug.de.adoc
new file mode 100644
index 000000000..5e88ef3ae
--- /dev/null
+++ b/doc/de/cmdline_options_debug.de.adoc
@@ -0,0 +1,16 @@
+// TRANSLATION MISSING
+*--no-dlclose*::
+ Do not call the function dlclose after plugins are unloaded.
+ This is useful with tools like Valgrind to display stack for unloaded
+ plugins.
+
+// TRANSLATION MISSING
+*--no-gnutls*::
+ Do not call the init and deinit functions of GnuTLS library.
+ This is useful with tools like Valgrind and electric-fence, to prevent
+ GnuTLS memory errors.
+
+// TRANSLATION MISSING
+*--no-gcrypt*::
+ Do not call the init and deinit functions of Gcrypt library.
+ This is useful with tools like Valgrind, to prevent Gcrypt memory errors.