This commit is contained in:
Mathieu Maret 2024-01-31 23:47:42 +01:00 committed by Mathieu Maret
parent 44c5551655
commit 1bb81fd57e
2 changed files with 2 additions and 1 deletions

View File

@ -20,7 +20,7 @@ void areaInit(vaddr_t firstMemUsed, vaddr_t lastUsed, vaddr_t stack_bottom, vadd
vaddr_t areaAlloc(unsigned int nbPages, uint32_t flags);
/**
* Free a vietual area
* Free a virtual area
**/
int areaFree(vaddr_t addr);

View File

@ -1,5 +1,6 @@
#pragma once
#include "types.h"
#include "stddef.h"
#include "stdarg.h"
int memcpyFromUser(vaddr_t to, uaddr_t from, size_t size);