This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

libgo patch committed: Fix sigfwd to not allocate memory


This patch to libgo fixes sigfwd to not allocate memory.  The use of
&[1]uintptr{fn} was causing memory allocation, even though it is being
compiled for the runtime package.  That is a bad idea for this
function, which is invoked by a signal handler.  Rewrite it to use
only constructs that do not allocate memory when compiled for the
runtime package.

The test for this is misc/cgo/testcarchive in the main repo, which we
don't yet test.

Bootstrapped and ran Go testsuite on x86_64-pc-linux-gnu.  Committed
to mainline.

Ian

Attachment: patch.txt
Description: Text document


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]