diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2014-03-15 07:15:11 +0100 |
---|---|---|
committer | Fedor Indutny <fedor.indutny@gmail.com> | 2014-03-16 16:15:34 +0400 |
commit | 23dfa71dd53617c3492f34787417ca60f03ea2ec (patch) | |
tree | c3125bbd0e5a0d1ceaa0c08676fadfa24dd01432 /src/node_provider.d | |
parent | c30cc4e3a5ead3ca5b48e8eec445740775888ed8 (diff) | |
download | node-new-23dfa71dd53617c3492f34787417ca60f03ea2ec.tar.gz |
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.d | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node_provider.d b/src/node_provider.d index 6f95b03db7..9f2d33ad93 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 |