aboutsummaryrefslogtreecommitdiffstats
path: root/doc/tshark.pod
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tshark.pod')
-rw-r--r--doc/tshark.pod13
1 files changed, 10 insertions, 3 deletions
diff --git a/doc/tshark.pod b/doc/tshark.pod
index f9f7a9c76a..82e8bd630e 100644
--- a/doc/tshark.pod
+++ b/doc/tshark.pod
@@ -1514,7 +1514,7 @@ This comes at the expense of significant extra memory usage.
=item WIRESHARK_DEBUG_SCRUB_MEMORY
-If this environment variable is exported, the contents of per-packet and
+If this environment variable is set, the contents of per-packet and
per-file memory is initialized to 0xBADDCAFE when the memory is allocated
and is reset to 0xDEADBEEF when the memory is freed. This functionality is
useful mainly to developers looking for bugs in the way memory is handled.
@@ -1565,18 +1565,25 @@ with a protocol dissector.
=item WIRESHARK_EP_VERIFY_POINTERS
-This environment variable, if exported, causes certain uses of pointers to be
+This environment variable, if present, causes certain uses of pointers to be
audited to ensure they do not point to memory that is deallocated after each
packet has been fully dissected. This can be useful to developers writing or
auditing code.
=item WIRESHARK_SE_VERIFY_POINTERS
-This environment variable, if exported, causes certain uses of pointers to be
+This environment variable, if present, causes certain uses of pointers to be
audited to ensure they do not point to memory that is deallocated after when
a capture file is closed. This can be useful to developers writing or
auditing code.
+=item WIRESHARK_ABORT_ON_OUT_OF_MEMORY
+
+This environment variable, if present, causes abort() to be called if certain
+out-of-memory conditions (which normally result in an exception and an
+explanatory error message)) are experienced. This can be useful to developers
+debugging out-of-memory conditions.
+
=back
=head1 SEE ALSO