Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlen Keane <glenkeane.94@gmail.com>2015-02-02 21:57:17 +0300
committerBen Noordhuis <info@bnoordhuis.nl>2015-02-02 23:55:56 +0300
commitd75fecf6fd7a1ef9d3d84a70ab832e7c062f5880 (patch)
tree52f6feb4de795c333e8bbefc8d445e375dddaa60 /src/node_win32_etw_provider.h
parent8c0742f43759d35da99f2475f81a026c2818c66a (diff)
src: remove unused dtrace probes
Removed DTRACE_NET_SOCKET_READ and DTRACE_NET_SOCKET_WRITE as they were never called from within the source code. PR-URL: https://github.com/iojs/io.js/pull/694 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'src/node_win32_etw_provider.h')
-rw-r--r--src/node_win32_etw_provider.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/node_win32_etw_provider.h b/src/node_win32_etw_provider.h
index 7ee3ff15cfd..23242349cdc 100644
--- a/src/node_win32_etw_provider.h
+++ b/src/node_win32_etw_provider.h
@@ -67,13 +67,8 @@ INLINE bool NODE_HTTP_CLIENT_REQUEST_ENABLED();
INLINE bool NODE_HTTP_CLIENT_RESPONSE_ENABLED();
INLINE bool NODE_NET_SERVER_CONNECTION_ENABLED();
INLINE bool NODE_NET_STREAM_END_ENABLED();
-INLINE bool NODE_NET_SOCKET_READ_ENABLED();
-INLINE bool NODE_NET_SOCKET_WRITE_ENABLED();
INLINE bool NODE_V8SYMBOL_ENABLED();
-#define NODE_NET_SOCKET_READ(...) /* no-op */
-#define NODE_NET_SOCKET_WRITE(...) /* no-op */
-
} // namespace node
#endif // SRC_NODE_WIN32_ETW_PROVIDER_H_