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_provider.d
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_provider.d')
-rw-r--r--src/node_provider.d6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/node_provider.d b/src/node_provider.d
index 9f2d33ad93d..90be45e730f 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,