aboutsummaryrefslogtreecommitdiff
path: root/kernel/include/vm/pagefault.h
blob: 78507276b9c9cc1ca2a380567b7dae025770e619 (plain)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include "types.h"

#define FAULT_PRESENT 0x01
#define FAULT_WRITE 0x02
#define FAULT_USER 0x04
#define FAULT_RESERVED 0x08
#define FAULT_EXEC 0x10

void handle_pagefault(uintptr_t vaddr, uintptr_t cause);