sanitizer_common: fix description of disable_coredump flag
s/disable_core/disable_coredump/ Add missing space in text. llvm-svn: 285401
This commit is contained in:
parent
7e6f8db7aa
commit
a2a677c542
|
|
@ -155,9 +155,9 @@ COMMON_FLAG(bool, print_suppressions, true,
|
||||||
"Print matched suppressions at exit.")
|
"Print matched suppressions at exit.")
|
||||||
COMMON_FLAG(
|
COMMON_FLAG(
|
||||||
bool, disable_coredump, (SANITIZER_WORDSIZE == 64),
|
bool, disable_coredump, (SANITIZER_WORDSIZE == 64),
|
||||||
"Disable core dumping. By default, disable_core=1 on 64-bit to avoid "
|
"Disable core dumping. By default, disable_coredump=1 on 64-bit to avoid"
|
||||||
"dumping a 16T+ core file. Ignored on OSes that don't dump core by"
|
" dumping a 16T+ core file. Ignored on OSes that don't dump core by"
|
||||||
"default and for sanitizers that don't reserve lots of virtual memory.")
|
" default and for sanitizers that don't reserve lots of virtual memory.")
|
||||||
COMMON_FLAG(bool, use_madv_dontdump, true,
|
COMMON_FLAG(bool, use_madv_dontdump, true,
|
||||||
"If set, instructs kernel to not store the (huge) shadow "
|
"If set, instructs kernel to not store the (huge) shadow "
|
||||||
"in core file.")
|
"in core file.")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue