aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/proc.c
AgeCommit message (Expand)Author
2012-03-27runtime: work around false negative in deadlock detectionRuss Cox
2012-03-27undo CL 5844051 / 5d0322034aa8Mikio Hara
2012-03-26runtime: restore deadlock detection in the simplest case.Rémy Oudompheng
2012-03-15runtime: do not handle signals before configuring handlerRuss Cox
2012-03-155l, 6l, 8l: fix stack split logic for stacks near default segment sizeRuss Cox
2012-03-05runtime: wait for main goroutine before setting GOMAXPROCS.Rémy Oudompheng
2012-03-01runtime: run init on main threadRuss Cox
2012-02-28runtime/pprof: support OS X CPU profilingRuss Cox
2012-02-22runtime: goroutine profile, stack dumpsRuss Cox
2012-02-19runtime: fix another memory leakRuss Cox
2012-02-19runtime: fix tiny memory leakRuss Cox
2012-02-17runtime: rename Cgocalls and Goroutines to NumCgoCall and NumGoroutine, respe...David Symonds
2012-02-16runtime: release unused memory to the OS.Sébastien Paolacci
2012-02-14runtime: on 386, fix FP control word on all threads, not just initial threadRuss Cox
2012-02-08runtime, pprof: add profiling of thread creationRuss Cox
2012-02-02runtime: add runtime.cputicks() and seed fastrand with itDamian Gryski
2011-12-16runtime: make more build-friendlyRuss Cox
2011-11-14syscall: take over env implementationRuss Cox
2011-11-11runtime: remove declarations of nonexistent functionsIan Lance Taylor
2011-11-09runtime: add timer support, use for package timeRuss Cox
2011-11-08runtime: add comments for various functions in proc.cIan Lance Taylor
2011-11-08runtime: add windows callback testsAlex Brainman
2011-10-27runtime: lock the main goroutine to the main OS thread during initRuss Cox
2011-10-25runtime: include bootstrap m in mcpu accountingHector Chu
2011-10-13runtime: run goroutines during initRuss Cox
2011-10-06runtime: fix spurious deadlock reportingDmitriy Vyukov
2011-10-03runtime: fix usleep on linux/386 and re-enable parallel gcHector Chu
2011-09-30runtime: disable parallel gcRuss Cox
2011-09-30runtime: parallelize garbage collector mark + sweepRuss Cox
2011-08-23runtime: fix void warningsRuss Cox
2011-08-22runtime: simplify stack tracesRuss Cox
2011-08-22runtime: Remove extraneous word in comment.Ian Lance Taylor
2011-08-18runtime: speed up cgo callsAlex Brainman
2011-08-16runtime: fix GC bitmap corruptionDmitriy Vyukov
2011-08-04runtime: remove unnecessary lockingHector Chu
2011-07-29runtime: fix scheduling raceHector Chu
2011-07-27runtime: higher goroutine arg limit, clearer errorRuss Cox
2011-07-23runtime: faster entersyscall/exitsyscallRuss Cox
2011-07-21runtime: replace centralized ncgocall counter with a distributed oneDmitriy Vyukov
2011-07-19runtime: faster entersyscall, exitsyscallRuss Cox
2011-07-18runtime: track running goroutine countRuss Cox
2011-07-12runtime: replace runtime.mcpy with runtime.memmoveQuan Yong Zhai
2011-07-12runtime: eliminate false sharing during stack growthDmitriy Vyukov
2011-07-12runtime: fix comment (lost in shuffle)Russ Cox
2011-07-12runtime: eliminate contention during stack allocationDmitriy Vyukov
2011-07-12runtime: eliminate false sharing on runtime.goidgenDmitriy Vyukov
2011-07-12runtime: eliminate false sharing on random number generatorsDmitriy Vyukov
2011-06-29runtime: windows/amd64 portWei Guangjing
2011-05-16runtime: make StackSystem part of StackGuardAlexey Borzenkov
2011-05-02os: make Setenv update C environment variablesBrad Fitzpatrick