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:
authorBen Noordhuis <info@bnoordhuis.nl>2014-03-15 10:15:11 +0400
committerFedor Indutny <fedor.indutny@gmail.com>2014-03-16 16:15:34 +0400
commit23dfa71dd53617c3492f34787417ca60f03ea2ec (patch)
treec3125bbd0e5a0d1ceaa0c08676fadfa24dd01432 /src/node_provider.d
parentc30cc4e3a5ead3ca5b48e8eec445740775888ed8 (diff)
src: fix tracing infrastructure after v8 upgrade
Fix up the dtrace/etw/systemtap infrastructure after the V8 upgrade in commit 1c7bf24. The win32 changes are untested but can hardly make things worse because node doesn't build on windows right now. Fixes #7313 with some luck.
Diffstat (limited to 'src/node_provider.d')
-rw-r--r--src/node_provider.d4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node_provider.d b/src/node_provider.d
index 6f95b03db74..9f2d33ad93d 100644
--- a/src/node_provider.d
+++ b/src/node_provider.d
@@ -75,8 +75,8 @@ provider node {
string a, int p, string m, string u, int fd);
probe http__client__response(node_dtrace_connection_t *c, const char *a,
int p, int fd) : (node_connection_t *c, string a, int p, int fd);
- probe gc__start(int t, int f);
- probe gc__done(int t, int f);
+ probe gc__start(int t, int f, void *isolate);
+ probe gc__done(int t, int f, void *isolate);
};
#pragma D attributes Evolving/Evolving/ISA provider node provider