forked from OSchip/llvm-project
[asan,tsan] rename files in sanitizer_common to have a common prefix (sanitizer_).
llvm-svn: 157740
This commit is contained in:
parent
d6ffccd1da
commit
c5bea20e2e
|
@ -14,7 +14,7 @@
|
|||
#ifndef ASAN_INTERNAL_H
|
||||
#define ASAN_INTERNAL_H
|
||||
|
||||
#include "sanitizer_common/mini_libc.h"
|
||||
#include "sanitizer_common/sanitizer_libc.h"
|
||||
|
||||
#if !defined(__linux__) && !defined(__APPLE__) && !defined(_WIN32)
|
||||
# error "This operating system is not supported by AddressSanitizer"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
//===-- mini_libc.cc --------------------------------------------*- C++ -*-===//
|
||||
//===-- sanitizer_libc.cc ---------------------------------------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
|
@ -8,9 +8,9 @@
|
|||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file is shared between AddressSanitizer and ThreadSanitizer
|
||||
// run-time libraries. See mini_libc.h for details.
|
||||
// run-time libraries. See sanitizer_libc.h for details.
|
||||
//===----------------------------------------------------------------------===//
|
||||
#include "mini_libc.h"
|
||||
#include "sanitizer_libc.h"
|
||||
|
||||
namespace __sanitizer {
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
//===-- mini_libc.h ---------------------------------------------*- C++ -*-===//
|
||||
//===-- sanitizer_libc.h ----------------------------------------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
|
@ -18,7 +18,7 @@
|
|||
#ifndef MINILIBC_H
|
||||
#define MINILIBC_H
|
||||
|
||||
// No code hete yet. Will move more code in the next changes.
|
||||
// No code here yet. Will move more code in the next changes.
|
||||
namespace __sanitizer {
|
||||
|
||||
void MiniLibcStub();
|
|
@ -12,7 +12,7 @@
|
|||
// Main file (entry points) for the TSan run-time.
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "sanitizer_common/mini_libc.h"
|
||||
#include "sanitizer_common/sanitizer_libc.h"
|
||||
#include "tsan_defs.h"
|
||||
#include "tsan_platform.h"
|
||||
#include "tsan_rtl.h"
|
||||
|
|
Loading…
Reference in New Issue