| commit | f8e6fee734cf5e3d061f576244b2704853148b04 | [log] [tgz] |
|---|---|---|
| author | Kostya Serebryany <kcc@google.com> | Fri Apr 06 01:27:11 2012 +0000 |
| committer | Kostya Serebryany <kcc@google.com> | Fri Apr 06 01:27:11 2012 +0000 |
| tree | b31b2a27e77b29eace5c5296e646383524bec011 | |
| parent | 31429389e6e01567d9f03ac5b4057cc58b7fe3f2 [diff] [blame] |
[asan] add flags: disable_core, abort_on_error and unmap_shadow_on_exit git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@154159 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/asan/asan_posix.cc b/lib/asan/asan_posix.cc index 03bd057..cd198bc 100644 --- a/lib/asan/asan_posix.cc +++ b/lib/asan/asan_posix.cc
@@ -140,6 +140,10 @@ _exit(exitcode); } +void Abort() { + abort(); +} + int Atexit(void (*function)(void)) { return atexit(function); }