Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/runtime/synctest.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,9 @@ func synctest_acquire() any {
func synctest_release(sg any) {
// Dummy: we don't support synctest.
}

//go:linkname synctest_inBubble internal/synctest.inBubble
func synctest_inBubble(bubble any, f func()) {
// Dummy: we don't support synctest, so run f outside of any bubble.
f()
}
Loading