aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/proc.c
AgeCommit message (Expand)Author
2013-02-20runtime: allow cgo callbacks on non-Go threadsRuss Cox
2013-02-20runtime: introduce entersyscallblock()Dmitriy Vyukov
2013-02-20runtime: fix deadlock detector false negativeDmitriy Vyukov
2013-02-20runtime: ensure forward progress of runtime.Gosched() for locked goroutinesDmitriy Vyukov
2013-02-15undo CL 7310096 / 59da6744d66dRuss Cox
2013-02-15runtime: make return from main wait for active panicRuss Cox
2013-02-15runtime: ensure forward progress of runtime.Gosched() for locked goroutinesDmitriy Vyukov
2013-02-14runtime: move stack management related code to stack.cDmitriy Vyukov
2013-02-06runtime/race: switch to explicit race context instead of goroutine id'sDmitriy Vyukov
2013-02-01runtime: cgo-related fixesRuss Cox
2013-01-30runtime: local allocation in mprof.gocJan Ziak
2013-01-29runtime: dump the full stack of a throwing goroutineDmitriy Vyukov
2013-01-26runtime: avoid defining the same variable in more than one translation unitShenghou Ma
2013-01-10runtime: faster segmented stacksDmitriy Vyukov
2013-01-10runtime: less aggressive per-thread stack segment cachingDmitriy Vyukov
2012-12-19runtime: use "mp" and "gp" instead of "m" and "g" for local variable name to ...Jingcheng Zhang
2012-11-27runtime: use reflect·call() to enter the function gc()Jan Ziak
2012-10-26runtime: switch to 64-bit goroutine idsDmitriy Vyukov
2012-10-21runtime: store types of allocated objectsJan Ziak
2012-10-07race: runtime changesDmitriy Vyukov
2012-09-24runtime: prepare for 64-bit intsRuss Cox
2012-09-18runtime: refactor goroutine blockingDmitriy Vyukov
2012-07-04runtime: move panic/defer/recover-related stuff to a separate fileDmitriy Vyukov
2012-07-03runtime: refactor proc.cDmitriy Vyukov
2012-05-30runtime: update field types in preparation for GC changesJan Ziak
2012-05-30runtime: handle windows exceptions, even in cgo programsAlex Brainman
2012-05-15runtime: refactor helpgc functionality in preparation for parallel GCDmitriy Vyukov
2012-04-02runtime: fix a commentMaxim Pimenov
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