aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/proc.c
AgeCommit message (Expand)Author
2014-11-11[dev.cc] runtime: convert scheduler from C to GoRuss Cox
2014-11-06runtime: fix initial gp->sched.pc in newextramRuss Cox
2014-10-29runtime: change top-most return PC from goexit to goexit+PCQuantumRuss Cox
2014-10-29runtime: fix line number in first stack frame in printed stack traceRuss Cox
2014-10-27runtime: add fake time support back.Shenghou Ma
2014-10-17undo CL 159990043 / 421fadcef39aRuss Cox
2014-10-16runtime: make pprof a little nicerRuss Cox
2014-10-03cmd/cc, runtime: disallow structs without tagsRuss Cox
2014-09-29runtime: initialize traceback variables earlierKeith Randall
2014-09-24cmd/cc, cmd/ld, runtime: disallow conservative data/bss objectsRuss Cox
2014-09-24runtime: keep g->syscallsp consistent after cgo->Go callbacksHector Martin Cantero
2014-09-18runtime: rename SchedType to SchedTRuss Cox
2014-09-18runtime: delete panicstring; move its checks into gopanicRuss Cox
2014-09-17runtime: change minimum stack size to 2K.Keith Randall
2014-09-16runtime: always run semacquire on the G stackKeith Randall
2014-09-12runtime: remove a few untyped allocationsRuss Cox
2014-09-11runtime: move gosched to Go, to add stack frame informationRuss Cox
2014-09-11runtime: allow crash from gsignal stackRuss Cox
2014-09-09runtime: call rfork on scheduler stack on Plan 9Anthony Martin
2014-09-09runtime: avoid read overrun in heapdumpRuss Cox
2014-09-09runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFramesRuss Cox
2014-09-09runtime: merge mallocgc, gomallocgcRuss Cox
2014-09-08liblink, runtime: diagnose and fix C code running on Go stackRuss Cox
2014-09-08build: move package sources from src/pkg to srcRuss Cox
2009-06-06move src/runtime -> src/lib/runtime;Russ Cox
2009-06-0232-bit fixes in lessstack.Russ Cox
2009-05-2632-bit stack switching bug fixRuss Cox
2009-05-08move things out of sys into os and runtimeRuss Cox
2009-04-13runtime nits: variable name and commentsRuss Cox
2009-04-02clarification suggested by robRuss Cox
2009-04-01fix runtime stack overflow bug that gri ran into:Russ Cox
2009-03-30more 386 runtime - can run tiny c programs.Russ Cox
2009-01-28Use explicit allspan list instead ofRuss Cox
2009-01-27pragma textflagKen Thompson
2009-01-27various race conditions.Russ Cox
2009-01-27deferKen Thompson
2009-01-26gc #0. mark and sweep collector.Russ Cox
2009-01-16casify, cleanup sysRuss Cox
2008-12-19malloc bug fixes.Russ Cox
2008-12-18malloc in runtime (not used by default)Russ Cox
2008-12-08use Note sched.stopped correctlyRuss Cox
2008-12-05add support for ref counts to memory allocator.Russ Cox
2008-12-04add stub routines stackalloc() and stackfree().Russ Cox
2008-11-25change meaning of $GOMAXPROCS to number of cpus to use,Russ Cox
2008-09-26go/acid/goRuss Cox
2008-09-24get rid of per-G Note, avoids per-G kernel semaphore on Mac.Russ Cox
2008-09-18proper handling of signals.Russ Cox
2008-09-17add network listening & testsRuss Cox
2008-09-09go threads for OS XRuss Cox
2008-09-08fix bug in stack limit calculation - was setting limit reg in wrong place.Rob Pike