forked from OSchip/llvm-project
24 lines
692 B
C++
24 lines
692 B
C++
//===-- sanitizer_common_libcdep.cc ---------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file is shared between AddressSanitizer and ThreadSanitizer
|
|
// run-time libraries.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "sanitizer_common.h"
|
|
|
|
namespace __sanitizer {
|
|
|
|
bool PrintsToTty() {
|
|
MaybeOpenReportFile();
|
|
return internal_isatty(report_fd) != 0;
|
|
}
|
|
|
|
} // namespace __sanitizer
|