All checks were successful
Build documentation / build-and-deploy (push) Successful in 21s
13 lines
282 B
C
13 lines
282 B
C
#ifndef _LIBMSL_M_PROC_H
|
|
#define _LIBMSL_M_PROC_H
|
|
|
|
#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
|