2#include <sys/syscall.h>
5#include <cosmos/error/ApiError.hxx>
6#include <cosmos/io/SecretFile.hxx>
15#ifdef SYS_memfd_secret
16 auto fd = ::syscall(SYS_memfd_secret, cloexec ? FD_CLOEXEC : 0);
19 cosmos_throw (
ApiError(
"memfd_secret()"));
25 cosmos_throw (
ApiError(
"memfd_secret()", Errno::NO_SYS));
Specialized exception type used when system APIs fail.
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.
Strong template type to wrap boolean values in a named type.
void create(const CloseOnExec cloexec=CloseOnExec{true})
Create a new MemFile using the given settings.
FileNum
Primitive file descriptor.