// Copyright (c) 2012-2014 Konstantin Isakov and ZBackup contributors, see CONTRIBUTORS // Part of ZBackup. Licensed under GNU GPLv2 or later + OpenSSL, see LICENSE #include "page_size.hh" #include unsigned getPageSize() { static unsigned value = 0; if ( !value ) value = sysconf( _SC_PAGESIZE ); return value; }