aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/proc.c
AgeCommit message (Expand)Author
2014-09-08build: move package sources from src/pkg to srcRuss Cox
2014-09-06runtime: fix panic/wrapper/recover mathRuss Cox
2014-09-06runtime: badreflectcall runs on the G stack - convert to Go.Keith Randall
2014-09-06runtime: get rid of other Go->C calls in test exports.Keith Randall
2014-09-04runtime: use cas loop to coordinate with sigprofRuss Cox
2014-09-04runtime: use new #include "textflag.h"Russ Cox
2014-09-04runtime: more C to Go conversion adjustmentsRuss Cox
2014-09-04runtime: make more functions safe for GoRuss Cox
2014-09-04runtime: convert cgocall to GoDmitriy Vyukov
2014-09-04runtime: use C for readgstatus, goroutine status valuesRuss Cox
2014-09-04runtime: correct various Go -> C function callsRuss Cox
2014-09-03runtime: make entersyscall/exitsyscall safe for stack splitsRuss Cox
2014-09-03runtime: remove guard against uninitialized forcegc.gRuss Cox
2014-09-03runtime: adopt race detector for runtime written in GoDmitriy Vyukov
2014-09-03runtime: Start and stop individual goroutines at gc safepointsRick Hudson
2014-09-03runtime: make onM and mcall take Go func valuesRuss Cox
2014-09-03runtime: convert a few traceback-related functions from proc.c to traceback.goRuss Cox
2014-09-02runtime: avoid race with forcegc helperRuss Cox
2014-09-02runtime: convert cpuprof from C to GoMatthew Dempsky
2014-09-01runtime: fix race detector running Go code on g0 of non-main threadRuss Cox
2014-09-01runtime: convert mprof.goc to mprof.goRuss Cox
2014-08-29runtime: make allp a static arrayRuss Cox
2014-08-29runtime: run runtime.initRuss Cox
2014-08-29runtime: convert forcegc helper to GoDmitriy Vyukov
2014-08-28runtime: convert print.c to GoRuss Cox
2014-08-27runtime: rename Lock to MutexRuss Cox
2014-08-27cmd/{ld,link,objdump}, runtime, debug/gosym: move linker-defined symbols into...Matthew Dempsky
2014-08-27runtime: changes to g->atomicstatus (nee status) to support concurrent GCRick Hudson
2014-08-26runtime,sync: Convert procPin and procUnpin functions to Go.Sanjay Menakuru
2014-08-25runtime: restore scavenger constantsDmitriy Vyukov
2014-08-25runtime: remove dedicated scavenger threadDmitriy Vyukov
2014-08-25runtime: refactor CPU profilingDmitriy Vyukov
2014-08-24runtime,runtime/debug: Converted some functions from goc to Go.Sanjay Menakuru
2014-08-24runtime: convert channel operations to Go, part 1 (chansend1).Keith Randall
2014-08-23runtime: remove unused varDmitriy Vyukov
2014-08-23runtime: run newproc1 on M stack.Daniel Morsing
2014-08-22runtime: convert note to GoDmitriy Vyukov
2014-08-21runtime: convert common scheduler functions to GoDmitriy Vyukov
2014-08-21runtime: init GC laterDmitriy Vyukov
2014-08-21runtime: fix deadlock when gctraceDmitriy Vyukov
2014-08-19runtime: convert Gosched to GoDmitriy Vyukov
2014-08-18runtime: fix dump of data/bssDmitriy Vyukov
2014-08-08runtime: mark functions as static where possibleMatthew Dempsky
2014-08-07cmd/cc, runtime: eliminate use of the unnamed substructure C extensionPeter Collingbourne
2014-08-07runtime: remove mal/malloc/FlagNoGC/FlagNoInvokeGCDmitriy Vyukov
2014-07-31runtime: get rid of freeDmitriy Vyukov
2014-07-30runtime: rewrite malloc in Go.Keith Randall
2014-07-29runtime: generate type info for chansDmitriy Vyukov
2014-07-29runtime: simpler and faster GCDmitriy Vyukov
2014-07-23runtime: fix unexpected return pc for runtime.newstackcallDmitriy Vyukov