zbackup/page_size.cc

16 lines
251 B
C++

// Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE
#include "page_size.hh"
#include <unistd.h>
unsigned getPageSize()
{
static unsigned value = 0;
if ( !value )
value = sysconf( _SC_PAGESIZE );
return value;
}