summaryrefslogtreecommitdiff
path: root/src/runtime/proc.c
AgeCommit message (Expand)AuthorFilesLines
2015-01-15Imported Upstream version 1.4upstream/1.4Tianon Gravi1-0/+3521
2009-06-06move src/runtime -> src/lib/runtime;Russ Cox1-858/+0
2009-06-0232-bit fixes in lessstack.Russ Cox1-13/+12
2009-05-2632-bit stack switching bug fixRuss Cox1-1/+1
2009-05-08move things out of sys into os and runtimeRuss Cox1-6/+24
2009-04-13runtime nits: variable name and commentsRuss Cox1-10/+10
2009-04-02clarification suggested by robRuss Cox1-0/+4
2009-04-01fix runtime stack overflow bug that gri ran into:Russ Cox1-152/+208
2009-03-30more 386 runtime - can run tiny c programs.Russ Cox1-3/+3
2009-01-28Use explicit allspan list instead ofRuss Cox1-4/+4
2009-01-27pragma textflagKen Thompson1-0/+4
2009-01-27various race conditions.Russ Cox1-1/+5
2009-01-27deferKen Thompson1-1/+36
2009-01-26gc #0. mark and sweep collector.Russ Cox1-3/+6
2009-01-16casify, cleanup sysRuss Cox1-7/+8
2008-12-19malloc bug fixes.Russ Cox1-1/+5
2008-12-18malloc in runtime (not used by default)Russ Cox1-0/+5
2008-12-08use Note sched.stopped correctlyRuss Cox1-1/+6
2008-12-05add support for ref counts to memory allocator.Russ Cox1-3/+40
2008-12-04add stub routines stackalloc() and stackfree().Russ Cox1-7/+30
2008-11-25change meaning of $GOMAXPROCS to number of cpus to use,Russ Cox1-62/+153
2008-09-26go/acid/goRuss Cox1-3/+3
2008-09-24get rid of per-G Note, avoids per-G kernel semaphore on Mac.Russ Cox1-13/+17
2008-09-18proper handling of signals.Russ Cox1-30/+46
2008-09-17add network listening & testsRuss Cox1-1/+1
2008-09-09go threads for OS XRuss Cox1-3/+1
2008-09-08fix bug in stack limit calculation - was setting limit reg in wrong place.Rob Pike1-8/+3
2008-08-05kill trailing white space.Russ Cox1-17/+17
2008-08-05* comment, clean up schedulerRuss Cox1-175/+285
2008-08-04first cut at multithreading. works on Linux.Russ Cox1-25/+198
2008-08-02slightly gratuitous reorg of scheduler codeRuss Cox1-18/+20
2008-07-28print tracebacks for all goroutines, not just the crashing oneRob Pike1-0/+15
2008-07-20start of selectKen Thompson1-25/+0
2008-07-17div bugKen Thompson1-6/+2
2008-07-16new (more fifo) schedulint algorithmKen Thompson1-13/+34
2008-07-14synch chanKen Thompson1-0/+264