No more finalizer for rwcancel

This commit is contained in:
Jason A. Donenfeld 2018-05-14 06:10:08 +02:00
parent 17262dfd62
commit 8b30278ce6

View file

@ -9,7 +9,6 @@ import (
"errors" "errors"
"golang.org/x/sys/unix" "golang.org/x/sys/unix"
"os" "os"
"runtime"
"syscall" "syscall"
) )
@ -52,10 +51,6 @@ func NewRWCancel(fd int) (*RWCancel, error) {
return nil, err return nil, err
} }
runtime.SetFinalizer(&rwcancel, func(rw *RWCancel) {
rw.Cancel()
})
return &rwcancel, nil return &rwcancel, nil
} }