File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 11/* Julia DTrace provider */
22
33provider julia {
4- probe gc__begin (int collection )
5- probe gc__stop_the_world ()
6- probe gc__mark__begin ()
7- probe gc__mark__end (int64 scanned_bytes , int64 perm_scanned_bytes )
8- probe gc__sweep__begin (int full )
9- probe gc__sweep__end ()
10- probe gc__end ()
11- probe gc__finalizer ()
12- }
4+ probe gc__begin (int collection );
5+ probe gc__stop_the_world ();
6+ probe gc__mark__begin ();
7+ probe gc__mark__end (int64_t scanned_bytes , int64_t perm_scanned_bytes );
8+ probe gc__sweep__begin (int full );
9+ probe gc__sweep__end ();
10+ probe gc__end ();
11+ probe gc__finalizer ();
12+ };
1313
1414#pragma D attributes Evolving/Evolving/Common provider julia provider
1515#pragma D attributes Evolving/Evolving/Common provider julia module
1616#pragma D attributes Evolving/Evolving/Common provider julia function
1717#pragma D attributes Evolving/Evolving/Common provider julia name
18- #pragma D attributes Evolving/Evolving/Common provider julia argst
18+ #pragma D attributes Evolving/Evolving/Common provider julia args
You can’t perform that action at this time.
0 commit comments