diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-07-05 11:41:56 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-07-05 11:41:56 -0700 |
commit | 6054dcc1302d1a1ef51e215dcf1ad16fb967f1ba (patch) | |
tree | bfdb8d58cdbe55de1e1e05a8331b0a1623f9aaa5 /deps/v8/include | |
parent | 33af2720f26c2b25bc7f75ce7eb454ff99db6d35 (diff) | |
download | node-new-6054dcc1302d1a1ef51e215dcf1ad16fb967f1ba.tar.gz |
Upgrade V8 to 3.4.9
Diffstat (limited to 'deps/v8/include')
-rw-r--r-- | deps/v8/include/v8.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/deps/v8/include/v8.h b/deps/v8/include/v8.h index e4ac1a3e18..fb10c71576 100644 --- a/deps/v8/include/v8.h +++ b/deps/v8/include/v8.h @@ -2558,18 +2558,6 @@ typedef void (*GCCallback)(); /** - * Profiler modules. - * - * In V8, profiler consists of several modules. Each can be turned on / off - * independently. - */ -enum ProfilerModules { - PROFILER_MODULE_NONE = 0, - PROFILER_MODULE_CPU = 1 -}; - - -/** * Collection of V8 heap information. * * Instances of this class can be passed to v8::V8::HeapStatistics to @@ -2996,40 +2984,6 @@ class V8EXPORT V8 { static bool IsProfilerPaused(); /** - * Resumes specified profiler modules. Can be called several times to - * mark the opening of a profiler events block with the given tag. - * - * "ResumeProfiler" is equivalent to "ResumeProfilerEx(PROFILER_MODULE_CPU)". - * See ProfilerModules enum. - * - * \param flags Flags specifying profiler modules. - * \param tag Profile tag. - */ - static void ResumeProfilerEx(int flags, int tag = 0); - - /** - * Pauses specified profiler modules. Each call to "PauseProfilerEx" closes - * a block of profiler events opened by a call to "ResumeProfilerEx" with the - * same tag value. There is no need for blocks to be properly nested. - * The profiler is paused when the last opened block is closed. - * - * "PauseProfiler" is equivalent to "PauseProfilerEx(PROFILER_MODULE_CPU)". - * See ProfilerModules enum. - * - * \param flags Flags specifying profiler modules. - * \param tag Profile tag. - */ - static void PauseProfilerEx(int flags, int tag = 0); - - /** - * Returns active (resumed) profiler modules. - * See ProfilerModules enum. - * - * \returns active profiler modules. - */ - static int GetActiveProfilerModules(); - - /** * If logging is performed into a memory buffer (via --logfile=*), allows to * retrieve previously written messages. This can be used for retrieving * profiler log data in the application. This function is thread-safe. |