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/src/log.h | |
parent | 33af2720f26c2b25bc7f75ce7eb454ff99db6d35 (diff) | |
download | node-new-6054dcc1302d1a1ef51e215dcf1ad16fb967f1ba.tar.gz |
Upgrade V8 to 3.4.9
Diffstat (limited to 'deps/v8/src/log.h')
-rw-r--r-- | deps/v8/src/log.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/src/log.h b/deps/v8/src/log.h index 8a627eb3f7..6ffd18c61b 100644 --- a/deps/v8/src/log.h +++ b/deps/v8/src/log.h @@ -280,9 +280,9 @@ class Logger { // Pause/Resume collection of profiling data. // When data collection is paused, CPU Tick events are discarded until // data collection is Resumed. - void PauseProfiler(int flags, int tag); - void ResumeProfiler(int flags, int tag); - int GetActiveProfilerModules(); + void PauseProfiler(); + void ResumeProfiler(); + bool IsProfilerPaused(); // If logging is performed into a memory buffer, allows to // retrieve previously written messages. See v8.h. |