diff options
author | Glen Keane <glenkeane.94@gmail.com> | 2015-02-02 18:57:17 +0000 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2015-02-02 21:55:56 +0100 |
commit | d75fecf6fd7a1ef9d3d84a70ab832e7c062f5880 (patch) | |
tree | 52f6feb4de795c333e8bbefc8d445e375dddaa60 /src/node_provider.d | |
parent | 8c0742f43759d35da99f2475f81a026c2818c66a (diff) | |
download | node-new-d75fecf6fd7a1ef9d3d84a70ab832e7c062f5880.tar.gz |
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_provider.d')
-rw-r--r-- | src/node_provider.d | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/node_provider.d b/src/node_provider.d index 9f2d33ad93..90be45e730 100644 --- a/src/node_provider.d +++ b/src/node_provider.d @@ -57,12 +57,6 @@ provider node { int fd); probe net__stream__end(node_dtrace_connection_t *c, const char *a, int p, int fd) : (node_connection_t *c, string a, int p, int fd); - probe net__socket__read(node_dtrace_connection_t *c, int b, - const char *a, int p, int fd) : (node_connection_t *c, int b, string a, - int p, int fd); - probe net__socket__write(node_dtrace_connection_t *c, int b, - const char *a, int p, int fd) : (node_connection_t *c, int b, string a, - int p, int fd); probe http__server__request(node_dtrace_http_server_request_t *h, node_dtrace_connection_t *c, const char *a, int p, const char *m, const char *u, int fd) : (node_http_request_t *h, node_connection_t *c, |