mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
28219f7f99
The following patch is result of libsanitizer/merge.sh from c425db2eb558c263 (yesterday evening). Bootstrapped/regtested on x86_64-linux and i686-linux (together with the follow-up 3 patches I'm about to post). BTW, seems upstream has added riscv64 support for I think lsan/tsan, so if anyone is willing to try it there, it would be a matter of copying e.g. the s390*-*-linux* libsanitizer/configure.tgt entry to riscv64-*-linux* with the obvious s/s390x/riscv64/ change in it.
27 lines
862 B
C++
27 lines
862 B
C++
//===-- sanitizer_dl.h ----------------------------------------------------===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file has helper functions that depend on libc's dynamic loading
|
|
// introspection.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SANITIZER_DL_H
|
|
#define SANITIZER_DL_H
|
|
|
|
namespace __sanitizer {
|
|
|
|
// Returns the path to the shared object or - in the case of statically linked
|
|
// sanitizers
|
|
// - the main program itself, that contains the sanitizer.
|
|
const char* DladdrSelfFName(void);
|
|
|
|
} // namespace __sanitizer
|
|
|
|
#endif // SANITIZER_DL_H
|