Open l2dy opened 2 years ago
cgo.Handle was added to Go in 1.17. It is equivalent to our implementation, but uses atomic.AddUintptr which is more efficient than C.CString("").
cgo.Handle
atomic.AddUintptr
C.CString("")
cgo.Handle
was added to Go in 1.17. It is equivalent to our implementation, but usesatomic.AddUintptr
which is more efficient thanC.CString("")
.