blob: bc175ed64280725b688de3436af848cbb29c67d1 [file] [log] [blame]
[email protected]167ec822011-10-24 22:05:271// Copyright (c) 2011 The Chromium Authors. All rights reserved.
[email protected]5f5ac6a2009-11-23 21:57:112// 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/sys_info.h"
6
[email protected]e43eddf12009-12-29 00:32:527#include <sys/sysctl.h>
8
[email protected]5f5ac6a2009-11-23 21:57:119#include "base/logging.h"
10
11namespace base {
12
avidd4e614352015-12-09 00:44:4913int64_t SysInfo::AmountOfPhysicalMemory() {
[email protected]5f5ac6a2009-11-23 21:57:1114 int pages, page_size;
15 size_t size = sizeof(pages);
16 sysctlbyname("vm.stats.vm.v_page_count", &pages, &size, NULL, 0);
17 sysctlbyname("vm.stats.vm.v_page_size", &page_size, &size, NULL, 0);
18 if (pages == -1 || page_size == -1) {
19 NOTREACHED();
20 return 0;
21 }
avidd4e614352015-12-09 00:44:4922 return static_cast<int64_t>(pages) * page_size;
[email protected]5f5ac6a2009-11-23 21:57:1123}
24
25// static
avidd4e614352015-12-09 00:44:4926uint64_t SysInfo::MaxSharedMemorySize() {
[email protected]5f5ac6a2009-11-23 21:57:1127 size_t limit;
28 size_t size = sizeof(limit);
[email protected]167ec822011-10-24 22:05:2729 if (sysctlbyname("kern.ipc.shmmax", &limit, &size, NULL, 0) < 0) {
30 NOTREACHED();
31 return 0;
32 }
avidd4e614352015-12-09 00:44:4933 return static_cast<uint64_t>(limit);
[email protected]5f5ac6a2009-11-23 21:57:1134}
35
36} // namespace base