blob: 6a9873818aa692cef16b32e10fd581586ab50bda [file] [log] [blame]
// Copyright 2014 Google Inc. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Defines the Asan CRT interceptors.
#ifndef SYZYGY_AGENT_ASAN_CRT_INTERCEPTORS_H_
#define SYZYGY_AGENT_ASAN_CRT_INTERCEPTORS_H_
#include "syzygy/agent/asan/crt_interceptors_macros.h"
namespace agent {
namespace asan {
class Shadow;
// Configures the shadow memory to be used by the CRT interceptors.
// @param shadow The shadow memory to use. May be null, effectively
// disabling the interceptors.
// @returns the previously configured shadow memory.
Shadow* SetCrtInterceptorShadow(Shadow* shadow);
} // namespace asan
} // namespace agent
// Exposes the CRT interceptors.
extern "C" {
// See crt_interceptors_macros.h for details.
ASAN_CRT_INTERCEPTORS(ASAN_CRT_INTERCEPTORS_DECL, asan_);
} // extern "C"
#endif // SYZYGY_AGENT_ASAN_CRT_INTERCEPTORS_H_