[PATCH] D58533: [hwasan, asan] Intercept vfork.

Jonas Hahnfeld via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 28 06:52:54 PST 2019


Hahnfeld added inline comments.


================
Comment at: lib/hwasan/hwasan.cpp:491
+  if (top == 0 || bottom == 0 || sp < bottom || sp >= top ||
+      sp - bottom > kMaxExpectedCleanupSize) {
+    Report(
----------------
This fails `test/hwasan/TestCases/Linux/vfork.c` for me with `ulimit -s unlimited` (or anything larger than `ulimit -s 131072`). What's the best solution here?


Repository:
  rCRT Compiler Runtime

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D58533/new/

https://reviews.llvm.org/D58533





More information about the llvm-commits mailing list