@@ -15,27 +15,27 @@ pub use small_string::SmallString;
1515/// DTrace / SystemTap USDT probes in Nova VM.
1616#[ usdt:: provider( provider = "nova_vm" ) ]
1717mod ndt {
18- // Start probes in alphabetical order.
19- fn builtin_call_start ( name : & str , id : u64 ) { }
20- fn builtin_constructor_start ( name : & str , id : u64 ) { }
21- fn eval_evaluation_start ( id : u64 ) { }
22- fn gc_start ( ) { }
23- fn javascript_call_start ( name : & str , id : u64 ) { }
24- fn javascript_constructor_start ( name : & str , id : u64 ) { }
25- fn job_evaluation_start ( id : u64 ) { }
26- fn module_evaluation_start ( id : u64 ) { }
27- fn script_evaluation_start ( id : u64 ) { }
18+ // // Start probes in alphabetical order.
19+ // fn builtin_call_start(name: &str, id: u64) {}
20+ // fn builtin_constructor_start(name: &str, id: u64) {}
21+ // fn eval_evaluation_start(id: u64) {}
22+ // fn gc_start() {}
23+ // fn javascript_call_start(name: &str, id: u64) {}
24+ // fn javascript_constructor_start(name: &str, id: u64) {}
25+ // fn job_evaluation_start(id: u64) {}
26+ // fn module_evaluation_start(id: u64) {}
27+ // fn script_evaluation_start(id: u64) {}
2828
29- // Done probes in alphabetical order.
30- fn builtin_call_done ( id : u64 ) { }
31- fn builtin_constructor_done ( id : u64 ) { }
32- fn eval_evaluation_done ( id : u64 ) { }
33- fn gc_done ( ) { }
34- fn javascript_constructor_done ( id : u64 ) { }
35- fn javascript_call_done ( id : u64 ) { }
36- fn job_evaluation_done ( id : u64 ) { }
37- fn module_evaluation_done ( id : u64 ) { }
38- fn script_evaluation_done ( id : u64 ) { }
29+ // // Done probes in alphabetical order.
30+ // fn builtin_call_done(id: u64) {}
31+ // fn builtin_constructor_done(id: u64) {}
32+ // fn eval_evaluation_done(id: u64) {}
33+ // fn gc_done() {}
34+ // fn javascript_constructor_done(id: u64) {}
35+ // fn javascript_call_done(id: u64) {}
36+ // fn job_evaluation_done(id: u64) {}
37+ // fn module_evaluation_done(id: u64) {}
38+ // fn script_evaluation_done(id: u64) {}
3939}
4040
4141// Expose the USDT probe registering function. In Linux this is a no-op but it
0 commit comments