ClickHouse/base/common/getPageSize.cpp
2020-12-17 00:23:41 +03:00

9 lines
112 B
C++

#include "common/getPageSize.h"
#include <unistd.h>
Int64 getPageSize()
{
return sysconf(_SC_PAGESIZE);
}