Skip to content

Commit 6449058

Browse files
committed
runtime: remove unused unique.runtime_blockUntilEmptyFinalizerQueue
It was added in CL 650256, and then the use in the unique package was removed in CL 650697. Change-Id: Id95f5dff7e11a2dc3eb544fda2586a305d3d91ab Reviewed-on: https://go-review.googlesource.com/c/go/+/681476 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Michael Knyszek <[email protected]>
1 parent 683810a commit 6449058

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/runtime/mfinal.go

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -338,11 +338,6 @@ func blockUntilEmptyFinalizerQueue(timeout int64) bool {
338338
return false
339339
}
340340

341-
//go:linkname unique_runtime_blockUntilEmptyFinalizerQueue unique.runtime_blockUntilEmptyFinalizerQueue
342-
func unique_runtime_blockUntilEmptyFinalizerQueue(timeout int64) bool {
343-
return blockUntilEmptyFinalizerQueue(timeout)
344-
}
345-
346341
// SetFinalizer sets the finalizer associated with obj to the provided
347342
// finalizer function. When the garbage collector finds an unreachable block
348343
// with an associated finalizer, it clears the association and runs

0 commit comments

Comments
 (0)