]> Cypherpunks repositories - gostls13.git/commit
runtime: correct implementation of raiseproc on Solaris
authorIan Lance Taylor <iant@golang.org>
Mon, 27 Jul 2015 17:41:41 +0000 (10:41 -0700)
committerIan Lance Taylor <iant@golang.org>
Tue, 28 Jul 2015 05:41:27 +0000 (05:41 +0000)
commitd7223c6cc162d89d56b3a23902033aaa93f052db
tree47c12189ed926a9df9c941cb6cdcc21a5fa45454
parentd1cf5b899d2c60c480955101ec37e0f70f128711
runtime: correct implementation of raiseproc on Solaris

I forgot that the libc raise function only sends the signal to the
current thread.  We need to actually use kill and getpid here, as we
do on other systems.

Change-Id: Iac34af822c93468bf68cab8879db3ee20891caaf
Reviewed-on: https://go-review.googlesource.com/12704
Reviewed-by: Russ Cox <rsc@golang.org>
src/runtime/os3_solaris.go