Skip to content

Commit 9d5de6c

Browse files
authored
Fix build failure from WITH_DTRACE on Darwin (#42146)
1 parent 47797a1 commit 9d5de6c

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/uprobes.d

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
/* Julia DTrace provider */
22

33
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+
};
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

0 commit comments

Comments
 (0)