mirror of
https://github.com/drasko/codezero.git
synced 2026-02-28 17:53:13 +01:00
15 lines
361 B
C
15 lines
361 B
C
#ifndef __INITTASK_ARCH_MM_H__
|
|
#define __INITTASK_ARCH_MM_H__
|
|
|
|
#include <l4/macros.h>
|
|
#include <l4/types.h>
|
|
#include INC_GLUE(memory.h)
|
|
#include <vm_area.h>
|
|
|
|
struct fault_data;
|
|
unsigned int vm_prot_flags(pte_t pte);
|
|
void set_generic_fault_params(struct fault_data *fault);
|
|
void fault_handle_error(struct fault_data *fault);
|
|
|
|
#endif /* __INITTASK_ARCH_MM_H__ */
|