search for: linux_syscall_hook

Displaying 7 results from an estimated 7 matches for "linux_syscall_hook".

Did you mean: linux_syscall_hooks
2014 Mar 27
2
[LLVMdev] Building sanitizers for Android
...9/arch-arm ... $ ninja install ... [68/68] -- Install configuration: "Release" -- Installing: ship/include/sanitizer/asan_interface.h -- Installing: ship/include/sanitizer/common_interface_defs.h -- Installing: ship/include/sanitizer/dfsan_interface.h -- Installing: ship/include/sanitizer/linux_syscall_hooks.h -- Installing: ship/include/sanitizer/lsan_interface.h -- Installing: ship/include/sanitizer/msan_interface.h -- Installing: ship/include/sanitizer/tsan_interface_atomic.h -- Installing: ship/asan_blacklist.txt -- Installing: ship/bin/asan_device_setup Thanks, Greg
2014 Mar 27
2
[LLVMdev] Building sanitizers for Android
...t;> -- Install configuration: "Release" >> -- Installing: ship/include/sanitizer/asan_interface.h >> -- Installing: ship/include/sanitizer/common_interface_defs.h >> -- Installing: ship/include/sanitizer/dfsan_interface.h >> -- Installing: ship/include/sanitizer/linux_syscall_hooks.h >> -- Installing: ship/include/sanitizer/lsan_interface.h >> -- Installing: ship/include/sanitizer/msan_interface.h >> -- Installing: ship/include/sanitizer/tsan_interface_atomic.h >> -- Installing: ship/asan_blacklist.txt >> -- Installing: ship/bin/asan_device_setu...
2014 Mar 28
2
[LLVMdev] Building sanitizers for Android
..."Release" >>>> -- Installing: ship/include/sanitizer/asan_interface.h >>>> -- Installing: ship/include/sanitizer/common_interface_defs.h >>>> -- Installing: ship/include/sanitizer/dfsan_interface.h >>>> -- Installing: ship/include/sanitizer/linux_syscall_hooks.h >>>> -- Installing: ship/include/sanitizer/lsan_interface.h >>>> -- Installing: ship/include/sanitizer/msan_interface.h >>>> -- Installing: ship/include/sanitizer/tsan_interface_atomic.h >>>> -- Installing: ship/asan_blacklist.txt >>>>...
2014 Apr 01
2
[LLVMdev] Building sanitizers for Android
...t;>> -- Installing: ship/include/sanitizer/asan_interface.h >> >>>> -- Installing: ship/include/sanitizer/common_interface_defs.h >> >>>> -- Installing: ship/include/sanitizer/dfsan_interface.h >> >>>> -- Installing: ship/include/sanitizer/linux_syscall_hooks.h >> >>>> -- Installing: ship/include/sanitizer/lsan_interface.h >> >>>> -- Installing: ship/include/sanitizer/msan_interface.h >> >>>> -- Installing: ship/include/sanitizer/tsan_interface_atomic.h >> >>>> -- Installing: ship/...
2014 Apr 02
3
[LLVMdev] Building sanitizers for Android
...hip/include/sanitizer/asan_interface.h > >>> >>>> -- Installing: ship/include/sanitizer/common_interface_defs.h > >>> >>>> -- Installing: ship/include/sanitizer/dfsan_interface.h > >>> >>>> -- Installing: ship/include/sanitizer/linux_syscall_hooks.h > >>> >>>> -- Installing: ship/include/sanitizer/lsan_interface.h > >>> >>>> -- Installing: ship/include/sanitizer/msan_interface.h > >>> >>>> -- Installing: ship/include/sanitizer/tsan_interface_atomic.h > >>> &...
2014 Apr 03
2
[LLVMdev] Building sanitizers for Android
...interface.h > >> >>> >>>> -- Installing: ship/include/sanitizer/common_interface_defs.h > >> >>> >>>> -- Installing: ship/include/sanitizer/dfsan_interface.h > >> >>> >>>> -- Installing: ship/include/sanitizer/linux_syscall_hooks.h > >> >>> >>>> -- Installing: ship/include/sanitizer/lsan_interface.h > >> >>> >>>> -- Installing: ship/include/sanitizer/msan_interface.h > >> >>> >>>> -- Installing: ship/include/sanitizer/tsan_interface_a...
2014 Nov 03
8
[LLVMdev] [PATCH] Protection against stack-based memory corruption errors using SafeStack
...rgets(SAFESTACK_SUPPORTED_ARCH x86_64 i386 i686) if(ANDROID) set(OS_NAME "Android") diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt index 7f8664e..7c34aee 100644 --- a/include/CMakeLists.txt +++ b/include/CMakeLists.txt @@ -6,7 +6,8 @@ set(SANITIZER_HEADERS sanitizer/linux_syscall_hooks.h sanitizer/lsan_interface.h sanitizer/msan_interface.h - sanitizer/tsan_interface_atomic.h) + sanitizer/tsan_interface_atomic.h + safestack_interface.h) set(output_dir ${COMPILER_RT_OUTPUT_DIR}/include) diff --git a/include/safestack_interface.h b/include/safestack_interface.h new f...