diff options
author | Dmitry Vyukov <dvyukov@google.com> | 2013-10-15 14:14:34 +0000 |
---|---|---|
committer | Dmitry Vyukov <dvyukov@google.com> | 2013-10-15 14:14:34 +0000 |
commit | 67a1eef05b3bc1265ce821a9c4fca7b6a41878ce (patch) | |
tree | f4e6223480cfb8e4026f78a416bba7895f743789 /compiler-rt/include/sanitizer/common_interface_defs.h | |
parent | 7502a3a90c3978df092a8fc74b4de94f09cac0d4 (diff) | |
download | bcm5719-llvm-67a1eef05b3bc1265ce821a9c4fca7b6a41878ce.tar.gz bcm5719-llvm-67a1eef05b3bc1265ce821a9c4fca7b6a41878ce.zip |
tsan: remove __sanitizer_set_report_fd function from public interface
__sanitizer_set_report_path now accepts two special values - stderr and stdout
logging to other file descriptors is not supported anymore,
it's fragile in presence of multiple processes, fork, etc
llvm-svn: 192706
Diffstat (limited to 'compiler-rt/include/sanitizer/common_interface_defs.h')
-rw-r--r-- | compiler-rt/include/sanitizer/common_interface_defs.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler-rt/include/sanitizer/common_interface_defs.h b/compiler-rt/include/sanitizer/common_interface_defs.h index 31d0dea5484..741958f834d 100644 --- a/compiler-rt/include/sanitizer/common_interface_defs.h +++ b/compiler-rt/include/sanitizer/common_interface_defs.h @@ -27,10 +27,6 @@ extern "C" { // Tell the tools to write their reports to "path.<pid>" instead of stderr. void __sanitizer_set_report_path(const char *path); - // Tell the tools to write their reports to given file descriptor instead of - // stderr. - void __sanitizer_set_report_fd(int fd); - // Notify the tools that the sandbox is going to be turned on. The reserved // parameter will be used in the future to hold a structure with functions // that the tools may call to bypass the sandbox. |