diff options
author | Richard Braun <rbraun@sceen.net> | 2013-06-15 10:18:07 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2013-07-06 19:02:10 +0200 |
commit | 75a1e4532166e7aeb2c0c3109851d4dd48c25183 (patch) | |
tree | 2fa5c822579694dbc7cd407108a65115c8c91a99 /vm/vm_map.c | |
parent | 738d08d5e306e67ba443763fd648a393a48c55d4 (diff) |
x86 page fault handling
Diffstat (limited to 'vm/vm_map.c')
-rw-r--r-- | vm/vm_map.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vm/vm_map.c b/vm/vm_map.c index 4ff86904..0a94b351 100644 --- a/vm/vm_map.c +++ b/vm/vm_map.c @@ -900,6 +900,16 @@ out: mutex_unlock(&map->lock); } +int +vm_map_fault(struct vm_map *map, unsigned long addr, int access) +{ + (void)map; + (void)addr; + (void)access; + + return ERROR_AGAIN; +} + static void vm_map_init(struct vm_map *map, struct pmap *pmap, unsigned long start, unsigned long end) |