2012-08-29 10:27:54 +08:00
|
|
|
//===-- sanitizer/common_interface_defs.h -----------------------*- C++ -*-===//
|
2012-06-05 21:50:57 +08:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2013-01-30 21:12:08 +08:00
|
|
|
// Common part of the public sanitizer interface.
|
2012-06-05 21:50:57 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2012-08-29 10:27:54 +08:00
|
|
|
#ifndef SANITIZER_COMMON_INTERFACE_DEFS_H
|
|
|
|
#define SANITIZER_COMMON_INTERFACE_DEFS_H
|
2012-06-05 21:50:57 +08:00
|
|
|
|
2013-01-30 21:12:08 +08:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
2012-06-05 21:50:57 +08:00
|
|
|
|
2013-01-30 21:12:08 +08:00
|
|
|
#ifdef __cplusplus
|
2012-09-14 12:35:14 +08:00
|
|
|
extern "C" {
|
2013-01-30 21:12:08 +08:00
|
|
|
#endif
|
2012-09-14 12:35:14 +08:00
|
|
|
// Tell the tools to write their reports to "path.<pid>" instead of stderr.
|
2013-01-30 21:12:08 +08:00
|
|
|
void __sanitizer_set_report_path(const char *path);
|
2012-11-02 17:23:36 +08:00
|
|
|
|
|
|
|
// Tell the tools to write their reports to given file descriptor instead of
|
|
|
|
// stderr.
|
2013-01-30 21:12:08 +08:00
|
|
|
void __sanitizer_set_report_fd(int fd);
|
2012-12-10 21:10:40 +08:00
|
|
|
|
|
|
|
// 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.
|
2013-01-30 21:12:08 +08:00
|
|
|
void __sanitizer_sandbox_on_notify(void *reserved);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2012-09-14 12:35:14 +08:00
|
|
|
} // extern "C"
|
2013-01-30 21:12:08 +08:00
|
|
|
#endif
|
2012-09-14 12:35:14 +08:00
|
|
|
|
2012-08-29 10:27:54 +08:00
|
|
|
#endif // SANITIZER_COMMON_INTERFACE_DEFS_H
|