]> Git Repo - qemu.git/blame - include/qemu/mprotect.h
works with less than base ISA qemu-system-riscv32 -M virt -bios none -kernel output...
[qemu.git] / include / qemu / mprotect.h
CommitLineData
f2241d16
PM
1/*
2 * QEMU mprotect functions
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
6 */
7#ifndef QEMU_MPROTECT_H
8#define QEMU_MPROTECT_H
9
10int qemu_mprotect_rw(void *addr, size_t size);
11int qemu_mprotect_rwx(void *addr, size_t size);
12int qemu_mprotect_none(void *addr, size_t size);
13
14#endif
This page took 0.047424 seconds and 4 git commands to generate.