mirror of
https://github.com/drasko/codezero.git
synced 2026-04-06 12:09:05 +02:00
Got mm0 to compile. A lot of issues expected.
This commit is contained in:
@@ -329,6 +329,13 @@ pgtable_unmap:
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
int do_munmap(void *vaddr, unsigned long size, struct tcb *task)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
int sys_munmap(l4id_t sender, void *vaddr, unsigned long size)
|
||||
{
|
||||
@@ -338,7 +345,6 @@ int sys_munmap(l4id_t sender, void *vaddr, unsigned long size)
|
||||
|
||||
return do_munmap(vaddr, size, task);
|
||||
}
|
||||
#endif
|
||||
|
||||
struct vm_area *vma_new(unsigned long pfn_start, unsigned long npages,
|
||||
unsigned int flags, unsigned long file_offset,
|
||||
|
||||
Reference in New Issue
Block a user