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 1
1
/* Julia DTrace provider */
2
2
3
3
provider 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
+ };
13
13
14
14
#pragma D attributes Evolving/Evolving/Common provider julia provider
15
15
#pragma D attributes Evolving/Evolving/Common provider julia module
16
16
#pragma D attributes Evolving/Evolving/Common provider julia function
17
17
#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