diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2019-03-31 23:53:54 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2019-03-31 23:53:54 +0200 |
commit | 413aa499cc61ee3ce18c57fc891ecc314b064a9f (patch) | |
tree | f94945c37faf0a7aa9ea77d45f0d552ec3d96b9b /doc/fr/cmdline_options_debug.fr.adoc | |
parent | c469f30be595bcf70feee6e0982961c199f78583 (diff) | |
download | weechat-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/fr/cmdline_options_debug.fr.adoc')
-rw-r--r-- | doc/fr/cmdline_options_debug.fr.adoc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/fr/cmdline_options_debug.fr.adoc b/doc/fr/cmdline_options_debug.fr.adoc new file mode 100644 index 000000000..d0f9df152 --- /dev/null +++ b/doc/fr/cmdline_options_debug.fr.adoc @@ -0,0 +1,13 @@ +*--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. + +*--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. + +*--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. |