Index: src/isolate.h |
diff --git a/src/isolate.h b/src/isolate.h |
index b9ba54ea463462bbd8635afa6a855789a5bdadf0..3cde4d998e11c6949822b273f4e0e48421868ec2 100644 |
--- a/src/isolate.h |
+++ b/src/isolate.h |
@@ -1164,6 +1164,10 @@ class Isolate { |
PRINTF_FORMAT(2, 3) void PrintWithTimestamp(const char* format, ...); |
+#ifdef USE_SIMULATOR |
+ base::Mutex* simulator_i_cache_mutex() { return &simulator_i_cache_mutex_; } |
+#endif |
+ |
protected: |
explicit Isolate(bool enable_serializer); |
bool IsArrayOrObjectPrototype(Object* object); |
@@ -1439,6 +1443,9 @@ class Isolate { |
v8::Isolate::AbortOnUncaughtExceptionCallback |
abort_on_uncaught_exception_callback_; |
Michael Achenbach
2016/09/13 13:40:56
nit: Maybe add an empty line?
ulan
2016/09/13 13:43:49
Done.
|
+#ifdef USE_SIMULATOR |
+ base::Mutex simulator_i_cache_mutex_; |
+#endif |
friend class ExecutionAccess; |
friend class HandleScopeImplementer; |