2#include <cosmos/error/ApiError.hxx>
3#include <cosmos/formatting.hxx>
4#include <cosmos/io/MemFile.hxx>
5#include <cosmos/private/cosmos.hxx>
6#include <cosmos/utils.hxx>
15 const auto page_size = to_integral(tlb_ps) << MAP_HUGE_SHIFT;
16 auto fd = ::memfd_create(name.raw(), flags.
raw() | page_size);
19 cosmos_throw (
ApiError(
"memfd_create()"));
Specialized exception type used when system APIs fail.
A typesafe bit mask representation using class enums.
EnumBaseType raw() const
Returns the raw bitfield integer.
virtual void close()
Close the current file object.
FileDescriptor fd() const
Allows access to the underlying fd with const semantics.
void setFD(const FileNum fd)
Assigns a new primitive file descriptor to the object.
void create(const SysString name, const OpenFlags flags=OpenFlags{OpenFlag::CLOEXEC}, const HugePageSize tlb_ps=HugePageSize::DEFAULT)
Create a new MemFile using the given settings.
HugePageSize
PageSize specification if OpenFlag::HUGETLB is set.
FileNum
Primitive file descriptor.
Wrapper type around a C-style string for use with system APIs.