diff options
Diffstat (limited to 'base/sys_info_win.cc')
-rw-r--r-- | base/sys_info_win.cc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/base/sys_info_win.cc b/base/sys_info_win.cc new file mode 100644 index 0000000..4d32489 --- /dev/null +++ b/base/sys_info_win.cc @@ -0,0 +1,18 @@ +// Copyright (c) 2008 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "base/sys_info.h" + +#include <windows.h> + +namespace base { + +// static +int SysInfo::NumberOfProcessors() { + SYSTEM_INFO info; + GetSystemInfo(&info); + return static_cast<int>(info.dwNumberOfProcessors); +} + +} // namespace base |