summaryrefslogtreecommitdiff
path: root/src/runtime/signal_386.go
Commit message (Collapse)AuthorAgeFilesLines
* [dev.cc] runtime: convert signal handlers from C to GoRuss Cox2014-11-111-0/+131
This code overused macros and could not be converted automatically. Instead a new sigctxt type had to be defined for each os/arch combination, with a common (implicit) interface used by the arch-specific signal handler code. [This CL is part of the removal of C code from package runtime. See golang.org/s/dev.cc for an overview.] LGTM=r R=r CC=austin, dvyukov, golang-codereviews, iant, khr https://codereview.appspot.com/168500044