1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:17:36 +00:00

Kernel: Move UBSanitizer and AddressSanitizer to Security subdirectory

This commit is contained in:
Liav A 2023-02-24 19:52:16 +02:00 committed by Jelle Raaijmakers
parent 490856453d
commit 64af4953c2
4 changed files with 3 additions and 3 deletions

View file

@ -0,0 +1,17 @@
/*
* Copyright (c) 2021, Brian Gianforcaro <bgianf@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Types.h>
namespace Kernel::AddressSanitizer {
void shadow_va_check_load(unsigned long address, size_t size, void* return_addr);
void shadow_va_check_store(unsigned long address, size_t size, void* return_addr);
}