Files
dhfs/libdhfs_support/helpers/src/MemoryHelpers.cpp
2024-08-24 12:26:16 +02:00

14 lines
265 B
C++

//
// Created by stepus53 on 24.8.24.
//
#include "MemoryHelpers.h"
#include <unistd.h>
#include "Utils.h"
unsigned int MemoryHelpers::get_page_size() {
static const auto PAGE_SIZE = checked_cast<unsigned int>(sysconf(_SC_PAGESIZE));
return PAGE_SIZE;
}