]> Cypherpunks repositories - gostls13.git/commitdiff
syscall: correct comment on where compileCallback is defined
authorIan Lance Taylor <iant@golang.org>
Mon, 15 Jun 2015 02:48:45 +0000 (19:48 -0700)
committerIan Lance Taylor <iant@golang.org>
Mon, 15 Jun 2015 03:10:52 +0000 (03:10 +0000)
Fixes #11216.

Change-Id: Iad1f4894c2258909484eaf975b08e0f47a82788e
Reviewed-on: https://go-review.googlesource.com/11098
Reviewed-by: Andrew Gerrand <adg@golang.org>
src/syscall/syscall_windows.go

index feb329f530061493ae5f74ef444ec75381f15ac9..225946c03d1992d528fe8df39d3876589f214da7 100644 (file)
@@ -107,7 +107,7 @@ func (e Errno) Timeout() bool {
        return e == EAGAIN || e == EWOULDBLOCK || e == ETIMEDOUT
 }
 
-// Implemented in asm_windows.s
+// Implemented in runtime/syscall_windows.go.
 func compileCallback(fn interface{}, cleanstack bool) uintptr
 
 // Converts a Go function to a function pointer conforming