aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2010-10-13 14:40:02 +1100
committerAndrew Gerrand <adg@golang.org>2010-10-13 14:40:02 +1100
commit78d19b9b7387db42470a3c47c602993fae452f48 (patch)
treef553f9125810fdf8985ca35b08058083605602f4
parent93159e32e775a318192b7cdebc559c57a2a0e39c (diff)
downloadgo-78d19b9b7387db42470a3c47c602993fae452f48.tar.gz
go-78d19b9b7387db42470a3c47c602993fae452f48.zip
runtime: remove done TODO from SetFinalizer
R=rsc CC=golang-dev https://golang.org/cl/2472041
-rw-r--r--src/pkg/runtime/extern.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/pkg/runtime/extern.go b/src/pkg/runtime/extern.go
index 0d0bfa777f..8ab57d03f6 100644
--- a/src/pkg/runtime/extern.go
+++ b/src/pkg/runtime/extern.go
@@ -146,7 +146,6 @@ func Semrelease(s *uint32)
// If a finalizer must run for a long time, it should do so by starting
// a new goroutine.
//
-// TODO(rsc): make os.File use SetFinalizer
// TODO(rsc): allow f to have (ignored) return values
//
func SetFinalizer(x, f interface{})