mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
9 lines
112 B
C++
9 lines
112 B
C++
#include "common/getPageSize.h"
|
|
|
|
#include <unistd.h>
|
|
|
|
Int64 getPageSize()
|
|
{
|
|
return sysconf(_SC_PAGESIZE);
|
|
}
|