Files
QEMU-S5L8950X/accel/tcg/system-page-protection.h
T
Yaya48 cf256aa081 Import QEMU upstream snapshot d2e570c
Upstream: https://gitlab.com/qemu-project/qemu.git

Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
2026-08-31 02:15:30 +02:00

18 lines
337 B
C

/*
* QEMU page protection (system emulation)
*
* Copyright (c) 2003 Fabrice Bellard
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#ifndef SYSTEM_PAGE_PROTECTION_H
#define SYSTEM_PAGE_PROTECTION_H
#include "system/ram_addr.h"
void tlb_protect_code(ram_addr_t ram_addr);
void tlb_unprotect_code(ram_addr_t ram_addr);
#endif