aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/runtime/runtime.c
AgeCommit message (Expand)Author
2011-08-22runtime: simplify stack tracesRuss Cox
2011-08-08runtime: add more specialized type algorithmsDmitriy Vyukov
2011-08-04runtime: faster chan creation on Linux/FreeBSD/Plan9Dmitriy Vyukov
2011-07-26gc, runtime: fix range+panic line number bugsRuss Cox
2011-07-23runtime: replace byte-at-a-time zeroing loop with memclrQuan Yong Zhai
2011-07-15runtime: native xadd for 386/amd64Dmitriy Vyukov
2011-07-12runtime: replace runtime.mcpy with runtime.memmoveQuan Yong Zhai
2011-07-12runtime: eliminate false sharing on random number generatorsDmitriy Vyukov
2011-02-25runtime: omit breakpoint during terminal panicRuss Cox
2011-02-22ld: detect stack overflow due to NOSPLITRuss Cox
2011-02-16runtime: minor cleanupRuss Cox
2011-02-02runtime: more detailed panic traces, line number workRuss Cox
2011-02-01windows: multiple improvements and cleanupsHector Chu
2011-01-25runtime: prefer fixed stack allocator over general memory allocatorRuss Cox
2011-01-20cgo: windows/386 portWei Guangjing
2011-01-18runtime: print signal information during panicRuss Cox
2011-01-12runtime: revert 6974:1f3c3696babbAlex Brainman
2010-12-16runtime: move windows goargs implementation from runtime and into os packageAlex Brainman
2010-12-14runtime: write only to standard errorRuss Cox
2010-12-13gc: align structs according to max alignment of fieldsRuss Cox
2010-11-04Small addition to previous optimization of memequal as discussed here: http:/...Graham Miller
2010-11-04runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almostRuss Cox
2010-10-18runtime: fix amd64 build (broke by 386 support for Plan 9)Russ Cox
2010-10-188l, runtime: initial support for Plan 9Yuval Pavel Zholkover
2010-10-07runtime: faster strequal, memequalGraham Miller
2010-08-26runtime: special case copy, equal for one-word interface valuesKyle Consalus
2010-06-28Only catch all signals if os/signal package imported.Ian Lance Taylor
2010-05-19runtime: avoid allocation for fixed stringsRuss Cox
2010-04-08runtime: fix build (panic) for FreeBSDRuss Cox
2010-04-05runtime: fix CallerRuss Cox
2010-04-05runtime: various arm fixesRuss Cox
2010-04-01runtime: turn run time errors checks into panicsRuss Cox
2010-03-31gc: implement panic and recoverRuss Cox
2010-03-30gc: add panic and recover (still unimplemented in runtime)Russ Cox
2010-03-24runtime: malloc sampling, pprof interfaceRuss Cox
2010-03-23runtime: add CallersRuss Cox
2010-03-16runtime: add GOROOT and VersionRuss Cox
2010-02-08runtime: instrument malloc + garbage collector.Russ Cox
2010-01-25in C and asm, replace pkg·name with ·nameRuss Cox
2010-01-06Ported runtime to Windows.Hector Chu
2009-11-20x[lo:] - gc and runtime.Russ Cox
2009-10-15rename sys functions to runtime,Russ Cox
2009-10-13write stack traces and panics to stderrRob Pike
2009-08-28sliceslice inlineKen Thompson
2009-08-25rename runtime internals to have modern names (array->slice etc)Rob Pike
2009-06-09mv src/lib to src/pkgRob Pike