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:
parent
490856453d
commit
64af4953c2
4 changed files with 3 additions and 3 deletions
17
Kernel/Security/AddressSanitizer.h
Normal file
17
Kernel/Security/AddressSanitizer.h
Normal 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);
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue