]> Cypherpunks repositories - gostls13.git/commit
os: clearer doc for Interrupt
authorKevin Burke <kev@inburke.com>
Tue, 25 Sep 2018 16:22:09 +0000 (09:22 -0700)
committerKevin Burke <kev@inburke.com>
Thu, 20 Dec 2018 18:56:28 +0000 (18:56 +0000)
commit8ff04a9966083f982ecaa57f7bcc786aa7316ec8
treef5872be7c2da19b204476eb1a2224748ed9a78f9
parent6a5c5f848606f8a63ed65e0203a8fade0a75c12d
os: clearer doc for Interrupt

I was confused by the juxtaposition of os.Interrupt docs, which are
"guaranteed to exist on all platforms" in one sentence and then
"not implemented" in the next sentence. Reading the code reveals
"not implemented" refers specifically to the implementation of
os.Process.Signal on Windows, not to the os.Interrupt variable itself.
Reword the doc to make this distinction clearer.

Fixes #27854.

Change-Id: I5fe7cddea61fa1954cef2006dc51b8fa8ece4d6e
Reviewed-on: https://go-review.googlesource.com/c/137336
Reviewed-by: Alex Brainman <alex.brainman@gmail.com>
src/os/exec_posix.go