[PATCH] D23332: [sanitizers] Documentation update for Scudo

Kostya Serebryany via llvm-commits llvm-commits at lists.llvm.org
Tue Aug 9 14:02:19 PDT 2016


kcc accepted this revision.
kcc added a comment.
This revision is now accepted and ready to land.

LGTM

Do you need to land it for you, or you already have commit access?


================
Comment at: docs/ScudoHardenedAllocator.rst:139
@@ -121,19 +138,3 @@
 
-- QuarantineSizeMb (integer, defaults to 64): the size (in Mb) of quarantine
-  used to delay the actual deallocation of chunks. Lower value may reduce
-  memory usage but decrease the effectiveness of the mitigation; a negative
-  value will fallback to a default of 64Mb;
-
-- ThreadLocalQuarantineSizeKb (integer, default to 1024): the size (in Kb) of
-  per-thread cache used to offload the global quarantine. Lower value may
-  reduce memory usage but might increase the contention on the global
-  quarantine.
-
-- DeallocationTypeMismatch (boolean, defaults to true): whether or not we report
-  errors on malloc/delete, new/free, new/delete[], etc;
-
-- DeleteSizeMismatch (boolean, defaults to true): whether or not we report
-  errors on mismatch between size of new and delete;
-
-- ZeroContents (boolean, defaults to false): whether or not we zero chunk
-  contents on allocation and deallocation.
++-----------------------------+---------+------------------------------------------------+
+| Option                      | Default | Description                                    |
----------------
Assuming you've checked the html result indeed looks nice. 


https://reviews.llvm.org/D23332





More information about the llvm-commits mailing list