From: Ian Lance Taylor Date: Mon, 15 Jun 2015 02:48:45 +0000 (-0700) Subject: syscall: correct comment on where compileCallback is defined X-Git-Tag: go1.5beta1~261 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0ee92cf9c5684ff40a732ab0a93e2e02f63daf0d;p=gostls13.git syscall: correct comment on where compileCallback is defined Fixes #11216. Change-Id: Iad1f4894c2258909484eaf975b08e0f47a82788e Reviewed-on: https://go-review.googlesource.com/11098 Reviewed-by: Andrew Gerrand --- diff --git a/src/syscall/syscall_windows.go b/src/syscall/syscall_windows.go index feb329f530..225946c03d 100644 --- a/src/syscall/syscall_windows.go +++ b/src/syscall/syscall_windows.go @@ -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