aboutsummaryrefslogtreecommitdiff
path: root/src/system_wrappers/interface/cpu_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/system_wrappers/interface/cpu_info.h')
-rw-r--r--src/system_wrappers/interface/cpu_info.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/system_wrappers/interface/cpu_info.h b/src/system_wrappers/interface/cpu_info.h
new file mode 100644
index 0000000000..a6da29f3d4
--- /dev/null
+++ b/src/system_wrappers/interface/cpu_info.h
@@ -0,0 +1,27 @@
+/*
+ * Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+
+#ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CPU_INFO_H_
+#define WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CPU_INFO_H_
+
+#include "typedefs.h"
+
+namespace webrtc {
+class CpuInfo
+{
+public:
+ static WebRtc_UWord32 DetectNumberOfCores();
+
+private:
+ CpuInfo() {}
+ static WebRtc_UWord32 _numberOfCores;
+};
+} // namespace webrtc
+#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CPU_INFO_H_