diff options
author | Ali Ijaz Sheikh <ofrobots@google.com> | 2016-04-07 14:06:55 -0700 |
---|---|---|
committer | Ali Ijaz Sheikh <ofrobots@google.com> | 2016-04-14 10:03:39 -0700 |
commit | 52af5c4eebf4de8638aef0338bd826656312a02a (patch) | |
tree | 628dc9fb0b558c3a73a2160706fef368876fe548 /deps/v8/src/tracing | |
parent | 6e3e8acc7cc7ebd3d67db5ade1247b8b558efe09 (diff) | |
download | node-new-52af5c4eebf4de8638aef0338bd826656312a02a.tar.gz |
deps: upgrade V8 to 5.0.71.32
* Pick up the branch head for V8 5.0 stable [1]
* Edit v8 gitignore to allow trace_event copy
* Update V8 DEP trace_event as per deps/v8/DEPS [2]
[1] https://chromium.googlesource.com/v8/v8.git/+/3c67831
[2] https://chromium.googlesource.com/chromium/src/base/trace_event/common/+/4b09207e447ae5bd34643b4c6321bee7b76d35f9
Ref: https://github.com/nodejs/node/pull/5945
PR-URL: https://github.com/nodejs/node/pull/6111
Reviewed-By: targos - Michaƫl Zasso <mic.besace@gmail.com>
Reviewed-By: bnoordhuis - Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: indutny - Fedor Indutny <fedor.indutny@gmail.com>
Diffstat (limited to 'deps/v8/src/tracing')
-rw-r--r-- | deps/v8/src/tracing/trace-event.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/deps/v8/src/tracing/trace-event.h b/deps/v8/src/tracing/trace-event.h index d2d423c3be..d17f78589f 100644 --- a/deps/v8/src/tracing/trace-event.h +++ b/deps/v8/src/tracing/trace-event.h @@ -24,8 +24,6 @@ enum CategoryGroupEnabledFlags { // Category group enabled for the recording mode. kEnabledForRecording_CategoryGroupEnabledFlags = 1 << 0, - // Category group enabled for the monitoring mode. - kEnabledForMonitoring_CategoryGroupEnabledFlags = 1 << 1, // Category group enabled by SetEventCallbackEnabled(). kEnabledForEventCallback_CategoryGroupEnabledFlags = 1 << 2, // Category group enabled to export events to ETW. @@ -101,9 +99,7 @@ enum CategoryGroupEnabledFlags { // Get the number of times traces have been recorded. This is used to implement // the TRACE_EVENT_IS_NEW_TRACE facility. // unsigned int TRACE_EVENT_API_GET_NUM_TRACES_RECORDED() -#define TRACE_EVENT_API_GET_NUM_TRACES_RECORDED \ - v8::internal::tracing::TraceEventHelper::GetCurrentPlatform() \ - ->getNumTracesRecorded +#define TRACE_EVENT_API_GET_NUM_TRACES_RECORDED UNIMPLEMENTED() // Add a trace event to the platform tracing system. // uint64_t TRACE_EVENT_API_ADD_TRACE_EVENT( |