diff options
Diffstat (limited to 'base/sys_info.h')
-rw-r--r-- | base/sys_info.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/base/sys_info.h b/base/sys_info.h index 35d371b..16b8690 100644 --- a/base/sys_info.h +++ b/base/sys_info.h @@ -14,6 +14,8 @@ namespace base { class SysInfo { public: // Return the number of logical processors/cores on the current machine. + // WARNING: On POSIX, this method uses static variables and is not threadsafe + // until it's been initialized by being called once without a race. static int NumberOfProcessors(); // Return the number of bytes of physical memory on the current machine. @@ -43,6 +45,15 @@ class SysInfo { // Returns the version of the host operating system. static std::string OperatingSystemVersion(); + // Retrieves detailed numeric values for the OS version. + // WARNING: On OS X, this method uses static variables and is not threadsafe + // until it's been initialized by being called once without a race. + // TODO(port): Implement a Linux version of this method and enable the + // corresponding unit test. + static void OperatingSystemVersionNumbers(int32 *major_version, + int32 *minor_version, + int32 *bugfix_version); + // Returns the CPU architecture of the system. Exact return value may differ // across platforms. static std::string CPUArchitecture(); |