/
githubmr
/
facebook-react-native
Обзор
Документация
Войти
/
githubmr
/
facebook-react-native
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
packages/react-native/ReactCommon/react/nativemodule/cputime/NativeCPUTime.h
28 строк
788 B
Rubén Norte
Implement native module to measure CPU time (#48454)
06 янв 2025, 18:10
06 янв 2025, 18:10
bc3072e
Код
Авторство
О чём код?
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #pragma once #if __has_include("rncoreJSI.h") // Cmake headers on Android #include "rncoreJSI.h" #elif __has_include("FBReactNativeSpecJSI.h") // CocoaPod headers on Apple #include "FBReactNativeSpecJSI.h" #else #include <FBReactNativeSpec/FBReactNativeSpecJSI.h> #endif namespace facebook::react { class NativeCPUTime : public NativeCPUTimeCxxSpec<NativeCPUTime> { public: explicit NativeCPUTime(std::shared_ptr<CallInvoker> jsInvoker); double getCPUTimeNanos(jsi::Runtime& runtime); bool hasAccurateCPUTimeNanosForBenchmarks(jsi::Runtime& runtime); }; } // namespace facebook::react