4#include <cosmos/proc/mman.hxx>
24 m_addr = mem::map(size, settings);
33 Mapping(
const Mapping&) =
delete;
34 Mapping& operator=(
const Mapping&) =
delete;
38 Mapping(Mapping &&other)
noexcept {
39 *
this = std::move(other);
42 Mapping& operator=(Mapping &&other)
noexcept {
43 m_addr = other.m_addr;
44 m_size = other.m_size;
50 return m_addr !=
nullptr;
58 mem::unmap(m_addr, m_size);
72 m_addr = mem::remap(m_addr, m_size, new_size, flags, new_addr);
81 const void* addr()
const {
95 mem::sync(m_addr, m_size, flags);
103 mem::lock(m_addr, m_size, flags);
111 mem::unlock(m_addr, m_size);
119 mem::protect(m_addr, m_size, flags);
131 void *m_addr =
nullptr;
A typesafe bit mask representation using class enums.
Memory mapping type with move-only ownership semantics.
void setProtection(const mem::AccessFlags flags)
Change memory protection settings.
Mapping(const size_t size, const mem::MapSettings &settings)
Create a new memory mapping based on the given settings.
void sync(const mem::SyncFlags flags)
Synchronize changes in the mapping with the file backing it.
size_t size() const
Returns the size of the mapped memory in bytes.
void lock(const mem::LockFlags flags={})
Lock pages in memory, preventing memory from being paged to the swap area.
void remap(const size_t new_size, const mem::RemapFlags &flags={}, std::optional< void * > new_addr={})
Adjust the memory mappings using new settings.
void unlock()
Unlock previously locked pages.
Mapping()=default
Creates an invalid memory mapping.
void * addr()
Returns the base address of the mapped memory.
Collection of settings used in cosmos::mem::map().