mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-14 06:10:40 +01:00

This CL has been generated with the following script: for m in PLOG \ LOG_TAG \ LOG_GLEM \ LOG_GLE_EX \ LOG_GLE \ LAST_SYSTEM_ERROR \ LOG_ERRNO_EX \ LOG_ERRNO \ LOG_ERR_EX \ LOG_ERR \ LOG_V \ LOG_F \ LOG_T_F \ LOG_E \ LOG_T \ LOG_CHECK_LEVEL_V \ LOG_CHECK_LEVEL \ LOG do git grep -l $m | xargs sed -i "s,\b$m\b,RTC_$m,g" done git checkout rtc_base/logging.h git cl format Bug: webrtc:8452 Change-Id: I1a53ef3e0a5ef6e244e62b2e012b864914784600 Reviewed-on: https://webrtc-review.googlesource.com/21325 Reviewed-by: Niels Moller <nisse@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#20617}
69 lines
2 KiB
C++
69 lines
2 KiB
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#include "system_wrappers/include/cpu_info.h"
|
|
|
|
#if defined(WEBRTC_WIN)
|
|
#include <windows.h>
|
|
#include <winsock2.h>
|
|
#ifndef EXCLUDE_D3D9
|
|
#include <d3d9.h>
|
|
#endif
|
|
#elif defined(WEBRTC_LINUX)
|
|
#include <unistd.h>
|
|
#endif
|
|
#if defined(WEBRTC_MAC)
|
|
#include <sys/sysctl.h>
|
|
#endif
|
|
|
|
#include "rtc_base/logging.h"
|
|
|
|
namespace internal {
|
|
static int DetectNumberOfCores() {
|
|
// We fall back on assuming a single core in case of errors.
|
|
int number_of_cores = 1;
|
|
|
|
#if defined(WEBRTC_WIN)
|
|
SYSTEM_INFO si;
|
|
GetNativeSystemInfo(&si);
|
|
number_of_cores = static_cast<int>(si.dwNumberOfProcessors);
|
|
#elif defined(WEBRTC_LINUX) || defined(WEBRTC_ANDROID)
|
|
number_of_cores = static_cast<int>(sysconf(_SC_NPROCESSORS_ONLN));
|
|
#elif defined(WEBRTC_MAC)
|
|
int name[] = {CTL_HW, HW_AVAILCPU};
|
|
size_t size = sizeof(number_of_cores);
|
|
if (0 != sysctl(name, 2, &number_of_cores, &size, NULL, 0)) {
|
|
RTC_LOG(LS_ERROR) << "Failed to get number of cores";
|
|
number_of_cores = 1;
|
|
}
|
|
#else
|
|
RTC_LOG(LS_ERROR) << "No function to get number of cores";
|
|
#endif
|
|
|
|
RTC_LOG(LS_INFO) << "Available number of cores: " << number_of_cores;
|
|
|
|
return number_of_cores;
|
|
}
|
|
} // namespace internal
|
|
|
|
namespace webrtc {
|
|
|
|
uint32_t CpuInfo::DetectNumberOfCores() {
|
|
// Statically cache the number of system cores available since if the process
|
|
// is running in a sandbox, we may only be able to read the value once (before
|
|
// the sandbox is initialized) and not thereafter.
|
|
// For more information see crbug.com/176522.
|
|
static uint32_t logical_cpus = 0;
|
|
if (!logical_cpus)
|
|
logical_cpus = static_cast<uint32_t>(internal::DetectNumberOfCores());
|
|
return logical_cpus;
|
|
}
|
|
|
|
} // namespace webrtc
|