We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01f5c1d commit acdaa72Copy full SHA for acdaa72
src/runtime/gc_extalloc.go
@@ -602,3 +602,11 @@ func alloc(size uintptr) unsafe.Pointer {
602
func free(ptr unsafe.Pointer) {
603
// Currently unimplemented due to bugs in coroutine lowering.
604
}
605
+
606
+func KeepAlive(x interface{}) {
607
+ // Unimplemented. Only required with SetFinalizer().
608
+}
609
610
+func SetFinalizer(obj interface{}, finalizer interface{}) {
611
+ // Unimplemented.
612
0 commit comments