21 lines
355 B
C++
21 lines
355 B
C++
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#ifdef WITH_JSC_EXTRA_TRACING
|
|
|
|
#include <jschelpers/JavaScriptCore.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
void addNativeProfilingHooks(JSGlobalContextRef ctx);
|
|
void stopAndOutputProfilingFile(
|
|
JSContextRef ctx,
|
|
JSStringRef title,
|
|
const char *filename);
|
|
|
|
} }
|
|
|
|
#endif
|