Implement proc_map () and proc_unmap () syscalls
All checks were successful
Build documentation / build-and-deploy (push) Successful in 21s
All checks were successful
Build documentation / build-and-deploy (push) Successful in 21s
This commit is contained in:
@@ -1,8 +1,12 @@
|
||||
#ifndef _LIBMSL_M_PROC_H
|
||||
#define _LIBMSL_M_PROC_H
|
||||
|
||||
int m_proc_quit (void);
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
int m_proc_quit (void);
|
||||
int m_proc_test (void);
|
||||
int m_proc_map (uintptr_t vaddr, size_t pages, uint32_t flags);
|
||||
int m_proc_unmap (uintptr_t vaddr, size_t pages);
|
||||
|
||||
#endif // _LIBMSL_M_PROC_H
|
||||
|
||||
Reference in New Issue
Block a user