1 // Copyright 2021 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "base/memory/page_size.h" 6 7 namespace base { 8 GetPageSize()9size_t GetPageSize() { 10 // System pagesize. This value remains constant on x86/64 architectures. 11 constexpr int PAGESIZE_KB = 4; 12 return PAGESIZE_KB * 1024; 13 } 14 15 } // namespace base 16