diff --git a/ReactCommon/jschelpers/JSCWrapper.h b/ReactCommon/jschelpers/JSCWrapper.h index aa4053784..95eb6e9cd 100644 --- a/ReactCommon/jschelpers/JSCWrapper.h +++ b/ReactCommon/jschelpers/JSCWrapper.h @@ -37,6 +37,7 @@ JSC_IMPORT JSValueRef JSEvaluateBytecodeBundle(JSContextRef, JSObjectRef, int, J JSC_IMPORT bool JSSamplingProfilerEnabled(); JSC_IMPORT void JSStartSamplingProfilingOnMainJSCThread(JSGlobalContextRef); JSC_IMPORT JSValueRef JSPokeSamplingProfiler(JSContextRef); +JSC_IMPORT void FBJSContextStartGCTimers(JSContextRef); #if defined(__APPLE__) #import @@ -64,6 +65,7 @@ struct JSCWrapper { // JSContext JSC_WRAPPER_METHOD(JSContextGetGlobalContext); JSC_WRAPPER_METHOD(JSContextGetGlobalObject); + JSC_WRAPPER_METHOD(FBJSContextStartGCTimers); // JSEvaluate JSC_WRAPPER_METHOD(JSEvaluateScript); diff --git a/ReactCommon/jschelpers/JavaScriptCore.h b/ReactCommon/jschelpers/JavaScriptCore.h index 737cf828c..076386b57 100644 --- a/ReactCommon/jschelpers/JavaScriptCore.h +++ b/ReactCommon/jschelpers/JavaScriptCore.h @@ -75,8 +75,9 @@ jsc_poison(JSContextGroupCreate JSContextGroupRelease JSContextGroupRetain // JSContext #define JSC_JSContextGetGlobalContext(...) __jsc_wrapper(JSContextGetGlobalContext, __VA_ARGS__) #define JSC_JSContextGetGlobalObject(...) __jsc_wrapper(JSContextGetGlobalObject, __VA_ARGS__) +#define JSC_FBJSContextStartGCTimers(...) __jsc_wrapper(FBJSContextStartGCTimers, __VA_ARGS__) -jsc_poison(JSContextGetGlobalContext JSContextGetGlobalObject JSContextGetGroup) +jsc_poison(JSContextGetGlobalContext JSContextGetGlobalObject JSContextGetGroup FBJSContextStartGCTimers) // JSEvaluate #define JSC_JSEvaluateScript(...) __jsc_wrapper(JSEvaluateScript, __VA_ARGS__) diff --git a/ReactCommon/jschelpers/systemJSCWrapper.cpp b/ReactCommon/jschelpers/systemJSCWrapper.cpp index 142726bcd..4b04a43cb 100644 --- a/ReactCommon/jschelpers/systemJSCWrapper.cpp +++ b/ReactCommon/jschelpers/systemJSCWrapper.cpp @@ -33,6 +33,8 @@ UNIMPLEMENTED_SYSTEM_JSC_FUNCTION(JSInspectorGetInstance) UNIMPLEMENTED_SYSTEM_JSC_FUNCTION(configureJSCForIOS) +UNIMPLEMENTED_SYSTEM_JSC_FUNCTION(FBJSContextStartGCTimers) + bool JSSamplingProfilerEnabled() { return false; } @@ -56,6 +58,9 @@ const JSCWrapper* systemJSCWrapper() { .JSContextGetGlobalContext = JSContextGetGlobalContext, .JSContextGetGlobalObject = JSContextGetGlobalObject, + .FBJSContextStartGCTimers = + (decltype(&FBJSContextStartGCTimers)) + Unimplemented_FBJSContextStartGCTimers, .JSEvaluateScript = JSEvaluateScript, .JSEvaluateBytecodeBundle =