Re: libgo patch committed: Don't clobber context when catching signal

2013-10-16 Thread Ian Lance Taylor
On Wed, Oct 16, 2013 at 12:24 AM, Uros Bizjak wrote: > >> This patch to libgo fixes a dumb bug in which catching a signal via the >> os/signal package could clobber the saved split-stack context, leading >> to disaster if the signal arrived at the wrong time. Bootstrapped and >> ran Go testsuite

Re: libgo patch committed: Don't clobber context when catching signal

2013-10-16 Thread Uros Bizjak
Hello! > This patch to libgo fixes a dumb bug in which catching a signal via the > os/signal package could clobber the saved split-stack context, leading > to disaster if the signal arrived at the wrong time. Bootstrapped and > ran Go testsuite on x86_64-unknown-linux-gnu. Committed to mainline.

libgo patch committed: Don't clobber context when catching signal

2013-10-14 Thread Ian Lance Taylor
This patch to libgo fixes a dumb bug in which catching a signal via the os/signal package could clobber the saved split-stack context, leading to disaster if the signal arrived at the wrong time. Bootstrapped and ran Go testsuite on x86_64-unknown-linux-gnu. Committed to mainline. Will commit to