mirror of
https://github.com/usatiuk/dhfs.git
synced 2025-10-28 20:47:49 +01:00
14 lines
265 B
C++
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;
|
|
} |