summaryrefslogtreecommitdiff
path: root/src/pkg/runtime/linux/386/defs.h
AgeCommit message (Collapse)AuthorFilesLines
2011-04-26Imported Upstream version 2011.04.13upstream/2011.04.13Ondřej Surý1-1/+11
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-0/+1
2010-04-08runtime: turn divide by zero, nil dereference into panicsRuss Cox1-1/+44
tested on linux/amd64, linux/386, linux/arm, darwin/amd64, darwin/386. freebsd untested; will finish in a separate CL. for now all the panics are errorStrings. richer structures can be added as necessary once the mechanism is shaked out. R=r CC=golang-dev http://codereview.appspot.com/906041
2009-11-18Remove unnecessary execute bits.William Josephson1-0/+0
R=rsc http://codereview.appspot.com/156077 Committer: Russ Cox <rsc@golang.org>
2009-10-26Get the right sigaction struct for the 386 rt_sigaction systemIan Lance Taylor1-5/+4
call. This uses the header files from a 32-bit Ubuntu Hardy system. The use of _LOOSE_KERNEL_NAMES seems right. The -D__ARCH_SI_UID_T works around a bug which appears to be fixed in later Linux versions. R=rsc http://go/go-review/1013015
2009-06-09mv src/lib to src/pkgRob Pike1-0/+136
tests: all.bash passes, gobuild still works, godoc still works. R=rsc OCL=30096 CL=30102