etw: fix descriptors of events 9 and 23
Event 9 must include the string terminator in the last descriptor. Event 23 must be published with no descriptors, in accordance with the manifest. PR-URL: https://github.com/nodejs/node/pull/5742 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com>
This commit is contained in:
parent
91466b855f
commit
387b6b4973
@ -94,6 +94,13 @@ extern int events_enabled;
|
||||
dataDescriptors); \
|
||||
CHECK_EQ(status, ERROR_SUCCESS);
|
||||
|
||||
#define ETW_WRITE_EMPTY_EVENT(eventDescriptor) \
|
||||
DWORD status = event_write(node_provider, \
|
||||
&eventDescriptor, \
|
||||
0, \
|
||||
NULL); \
|
||||
CHECK_EQ(status, ERROR_SUCCESS);
|
||||
|
||||
|
||||
void NODE_HTTP_SERVER_REQUEST(node_dtrace_http_server_request_t* req,
|
||||
node_dtrace_connection_t* conn, const char *remote, int port,
|
||||
@ -189,10 +196,7 @@ void NODE_V8SYMBOL_MOVE(const void* addr1, const void* addr2) {
|
||||
|
||||
void NODE_V8SYMBOL_RESET() {
|
||||
if (events_enabled > 0) {
|
||||
int val = 0;
|
||||
EVENT_DATA_DESCRIPTOR descriptors[1];
|
||||
ETW_WRITE_INT32_DATA(descriptors, &val);
|
||||
ETW_WRITE_EVENT(NODE_V8SYMBOL_RESET_EVENT, descriptors);
|
||||
ETW_WRITE_EMPTY_EVENT(NODE_V8SYMBOL_RESET_EVENT);
|
||||
}
|
||||
}
|
||||
|
||||
@ -244,7 +248,7 @@ void NODE_V8SYMBOL_ADD(LPCSTR symbol,
|
||||
line,
|
||||
col,
|
||||
symbuf,
|
||||
symbol_len * sizeof(symbuf[0]));
|
||||
(symbol_len + 1) * sizeof(symbuf[0]));
|
||||
ETW_WRITE_EVENT(MethodLoad, descriptors);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user