Index: src/base/platform/platform-win32.cc |
diff --git a/src/base/platform/platform-win32.cc b/src/base/platform/platform-win32.cc |
index 9f106785eb1cebd00b8ff8492c6dc9c126b94f4a..dc31ff873d45043f2a1b8ddc65c5c8209968d6ee 100644 |
--- a/src/base/platform/platform-win32.cc |
+++ b/src/base/platform/platform-win32.cc |
@@ -113,11 +113,6 @@ bool g_hard_abort = false; |
} // namespace |
-intptr_t OS::MaxVirtualMemory() { |
- return 0; |
-} |
- |
- |
class TimezoneCache { |
public: |
TimezoneCache() : initialized_(false) { } |
@@ -1168,18 +1163,6 @@ void OS::SignalCodeMovingGC() { |
} |
-uint64_t OS::TotalPhysicalMemory() { |
- MEMORYSTATUSEX memory_info; |
- memory_info.dwLength = sizeof(memory_info); |
- if (!GlobalMemoryStatusEx(&memory_info)) { |
- UNREACHABLE(); |
- return 0; |
- } |
- |
- return static_cast<uint64_t>(memory_info.ullTotalPhys); |
-} |
- |
- |
#else // __MINGW32__ |
std::vector<OS::SharedLibraryAddress> OS::GetSharedLibraryAddresses() { |
return std::vector<OS::SharedLibraryAddress>(); |
@@ -1190,13 +1173,6 @@ void OS::SignalCodeMovingGC() { } |
#endif // __MINGW32__ |
-int OS::NumberOfProcessorsOnline() { |
- SYSTEM_INFO info; |
- GetSystemInfo(&info); |
- return info.dwNumberOfProcessors; |
-} |
- |
- |
double OS::nan_value() { |
#ifdef _MSC_VER |
return std::numeric_limits<double>::quiet_NaN(); |