Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1019)

Unified Diff: base/sys_info_freebsd.cc

Issue 1000933002: sys_info_linux: positive return value of MaxSharedMemorySize for 32-bit build on 64-bit host. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed useless file. Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « base/sys_info.h ('k') | base/sys_info_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/sys_info_freebsd.cc
diff --git a/base/sys_info_freebsd.cc b/base/sys_info_freebsd.cc
index 832b35985bedb4010a0130c3e6cf554a8ebbb265..515b59d6e9845d8e20f35ce9217dd597fe7b0c97 100644
--- a/base/sys_info_freebsd.cc
+++ b/base/sys_info_freebsd.cc
@@ -23,14 +23,14 @@ int64 SysInfo::AmountOfPhysicalMemory() {
}
// static
-size_t SysInfo::MaxSharedMemorySize() {
+uint64 SysInfo::MaxSharedMemorySize() {
size_t limit;
size_t size = sizeof(limit);
if (sysctlbyname("kern.ipc.shmmax", &limit, &size, NULL, 0) < 0) {
NOTREACHED();
return 0;
}
- return limit;
+ return static_cast<uint64>(limit);
}
} // namespace base
« no previous file with comments | « base/sys_info.h ('k') | base/sys_info_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698