brintos

brintos / llvm-project-archived public Read only

0
0
Text · 756 B · 61751f7 Raw
25 lines · c
1//===-- hwasan_poisoning.h --------------------------------------*- C++ -*-===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8//9// This file is a part of HWAddressSanitizer.10//11//===----------------------------------------------------------------------===//12 13#ifndef HWASAN_POISONING_H14#define HWASAN_POISONING_H15 16#include "hwasan.h"17 18namespace __hwasan {19uptr TagMemory(uptr p, uptr size, tag_t tag);20uptr TagMemoryAligned(uptr p, uptr size, tag_t tag);21 22}  // namespace __hwasan23 24#endif  // HWASAN_POISONING_H25