Index: src/v8.h |
diff --git a/src/v8.h b/src/v8.h |
index b16374f338a3f7043108dbd0f2d698b0e9351f9c..52fb98a5617706f3d7510da53c328f5a92669b07 100644 |
--- a/src/v8.h |
+++ b/src/v8.h |
@@ -101,6 +101,8 @@ class V8 : public AllStatic { |
// Support for return-address rewriting profilers. |
static void SetReturnAddressLocationResolver( |
ReturnAddressLocationResolver resolver); |
+ // Support for entry hooking JITed code. |
+ static void SetFunctionEntryHook(FunctionEntryHook entry_hook); |
// Random number generation support. Not cryptographically safe. |
static uint32_t Random(Context* context); |
// We use random numbers internally in memory allocation and in the |