From d0b0bb4ae00f596042bebe1ae61ae685bfbebf7d Mon Sep 17 00:00:00 2001 From: Glen Keane Date: Tue, 3 Feb 2015 09:46:34 +0000 Subject: [PATCH] dtrace: fix removal of unused probes Fixes Windows compile failures introduced in d75fecf6f PR-URL: https://github.com/iojs/io.js/pull/703 Reviewed-By: Rod Vagg --- src/node_win32_etw_provider-inl.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/node_win32_etw_provider-inl.h b/src/node_win32_etw_provider-inl.h index 6104687a255..de53203cb3c 100644 --- a/src/node_win32_etw_provider-inl.h +++ b/src/node_win32_etw_provider-inl.h @@ -257,8 +257,6 @@ bool NODE_HTTP_CLIENT_REQUEST_ENABLED() { return events_enabled > 0; } bool NODE_HTTP_CLIENT_RESPONSE_ENABLED() { return events_enabled > 0; } bool NODE_NET_SERVER_CONNECTION_ENABLED() { return events_enabled > 0; } bool NODE_NET_STREAM_END_ENABLED() { return events_enabled > 0; } -bool NODE_NET_SOCKET_READ_ENABLED() { return events_enabled > 0; } -bool NODE_NET_SOCKET_WRITE_ENABLED() { return events_enabled > 0; } bool NODE_V8SYMBOL_ENABLED() { return events_enabled > 0; } } // namespace node