ruuda | f6a3f594 | 2015-10-07 17:32:11 | [diff] [blame] | 1 | // Copyright 2015 The Chromium Authors. All rights reserved. |
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/process/process_metrics.h" | ||||
6 | |||||
avi | beced7c | 2015-12-24 06:47:59 | [diff] [blame] | 7 | #include <stddef.h> |
ruuda | f6a3f594 | 2015-10-07 17:32:11 | [diff] [blame] | 8 | #include <unistd.h> |
9 | |||||
10 | namespace base { | ||||
11 | |||||
12 | size_t GetPageSize() { | ||||
13 | return getpagesize(); | ||||
14 | } | ||||
15 | |||||
16 | } // namespace base |