summaryrefslogtreecommitdiff
path: root/test/initsyscall.go
AgeCommit message (Collapse)AuthorFilesLines
2011-09-13Imported Upstream version 60upstream/60Ondřej Surý1-0/+27
2011-09-13Imported Upstream version 60Ondřej Surý1-27/+0
2011-01-17Imported Upstream version 2011.01.12upstream/2011.01.12Ondřej Surý1-2/+2
2009-09-17unused importsRuss Cox1-1/+0
R=r OCL=34731 CL=34731
2009-07-21runtime: fix init scheduling bug.Russ Cox1-0/+28
if there is a goroutine waiting to run and the init goroutine enters a system call, entersyscall was trying to kick off a new scheduler for the other goroutine, causing a panic (new goroutines can't run until main.main). R=r DELTA=32 (32 added, 0 deleted, 0 changed) OCL=31982 CL=31982