v8.h   v8.h 
skipping to change at line 4443 skipping to change at line 4443
/** /**
* Suspends recording of tick samples in the profiler. * Suspends recording of tick samples in the profiler.
* When the V8 profiling mode is enabled (usually via command line * When the V8 profiling mode is enabled (usually via command line
* switches) this function suspends recording of tick samples. * switches) this function suspends recording of tick samples.
* Profiling ticks are discarded until ResumeProfiler() is called. * Profiling ticks are discarded until ResumeProfiler() is called.
* *
* See also the --prof and --prof_auto command line switches to * See also the --prof and --prof_auto command line switches to
* enable V8 profiling. * enable V8 profiling.
*/ */
static void PauseProfiler(); V8_DEPRECATED(static void PauseProfiler());
/** /**
* Resumes recording of tick samples in the profiler. * Resumes recording of tick samples in the profiler.
* See also PauseProfiler(). * See also PauseProfiler().
*/ */
static void ResumeProfiler(); V8_DEPRECATED(static void ResumeProfiler());
/** /**
* Return whether profiler is currently paused. * Return whether profiler is currently paused.
*/ */
static bool IsProfilerPaused(); V8_DEPRECATED(static bool IsProfilerPaused());
/** /**
* Retrieve the V8 thread id of the calling thread. * Retrieve the V8 thread id of the calling thread.
* *
* The thread id for a thread should only be retrieved after the V8 * The thread id for a thread should only be retrieved after the V8
* lock has been acquired with a Locker object with that thread. * lock has been acquired with a Locker object with that thread.
*/ */
static int GetCurrentThreadId(); static int GetCurrentThreadId();
/** /**
skipping to change at line 5299 skipping to change at line 5299
static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3; static const int kNodeFlagsOffset = 1 * kApiPointerSize + 3;
static const int kNodeStateMask = 0xf; static const int kNodeStateMask = 0xf;
static const int kNodeStateIsWeakValue = 2; static const int kNodeStateIsWeakValue = 2;
static const int kNodeStateIsNearDeathValue = 4; static const int kNodeStateIsNearDeathValue = 4;
static const int kNodeIsIndependentShift = 4; static const int kNodeIsIndependentShift = 4;
static const int kNodeIsPartiallyDependentShift = 5; static const int kNodeIsPartiallyDependentShift = 5;
static const int kJSObjectType = 0xb1; static const int kJSObjectType = 0xb1;
static const int kFirstNonstringType = 0x80; static const int kFirstNonstringType = 0x80;
static const int kOddballType = 0x83; static const int kOddballType = 0x83;
static const int kForeignType = 0x88; static const int kForeignType = 0x87;
static const int kUndefinedOddballKind = 5; static const int kUndefinedOddballKind = 5;
static const int kNullOddballKind = 3; static const int kNullOddballKind = 3;
static void CheckInitializedImpl(v8::Isolate* isolate); static void CheckInitializedImpl(v8::Isolate* isolate);
V8_INLINE(static void CheckInitialized(v8::Isolate* isolate)) { V8_INLINE(static void CheckInitialized(v8::Isolate* isolate)) {
#ifdef V8_ENABLE_CHECKS #ifdef V8_ENABLE_CHECKS
CheckInitializedImpl(isolate); CheckInitializedImpl(isolate);
#endif #endif
} }
 End of changes. 4 change blocks. 
4 lines changed or deleted 4 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/