]> Cypherpunks repositories - gostls13.git/commit
runtime: restructured signal_linux.go, added signal table for mips64.
authorYao Zhang <lunaria21@gmail.com>
Thu, 24 Sep 2015 12:56:15 +0000 (08:56 -0400)
committerMinux Ma <minux@golang.org>
Thu, 12 Nov 2015 04:49:06 +0000 (04:49 +0000)
commit846a9adf0592a0f34846c871c59b71d033187b0f
tree8cc987e499d8a3fc66541d7b5be16c4b2866fb4c
parent624f84536d52b13066c268c83e1b84c088d29471
runtime: restructured signal_linux.go, added signal table for mips64.

Linux/mips64 uses a different signal table. To avoid code copying,
signal table is factored out from signal_linux.go to
sigtab_linux_generic.go. And a mips64-specific version is added.

Change-Id: I842d7a7467c330bf772855fde01aecc77a42316b
Reviewed-on: https://go-review.googlesource.com/14993
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/runtime/signal_linux.go
src/runtime/sigtab_linux_generic.go [new file with mode: 0644]
src/runtime/sigtab_linux_mips64x.go [new file with mode: 0644]