aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime.h
AgeCommit message (Expand)Author
2014-11-11[dev.cc] runtime: convert header files to GoRuss Cox
2014-10-29runtime: fix line number in first stack frame in printed stack traceRuss Cox
2014-10-28runtime: add GODEBUG invalidptr settingRuss Cox
2014-10-08runtime: delay freeing of shrunk stacks until gc is done.Keith Randall
2014-10-07runtime: change Windows M.thread from void* to uintptrRuss Cox
2014-10-03cmd/cc, runtime: disallow structs without tagsRuss Cox
2014-09-29runtime: initialize traceback variables earlierKeith Randall
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-16runtime: always run semacquire on the G stackKeith Randall
2014-09-16runtime: use traceback to traverse defer structuresRuss Cox
2014-09-16runtime: remove duplicated Go constantsRuss Cox
2014-09-14runtime: convert syscall_windows.c to GoRuss Cox
2014-09-12runtime: remove a few untyped allocationsRuss Cox
2014-09-12runtime: stop scanning stack frames/args conservativelyRuss Cox
2014-09-12runtime: look up arg stackmap for makeFuncStub/methodValueStub during tracebackRuss 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: assume precisestack, copystack, StackCopyAlways, ScanStackByFramesRuss Cox
2014-09-08runtime: let stack copier update Panic structs for usRuss 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-04386-related fixes and guardsRuss Cox
2009-06-04more 386 runtime fixes.Russ Cox
2009-06-0232-bit fixes in lessstack.Russ Cox
2009-05-20change representation of interface values.Russ Cox
2009-05-08move things out of sys into os and runtimeRuss Cox
2009-04-12fix string range to have full unicode range (up to 10FFFF).Rob Pike
2009-04-09change representation of stringsKen Thompson
2009-03-30more 386 runtime - can run tiny c programs.Russ Cox
2009-01-27spellingKen Thompson
2009-01-27deferKen Thompson
2009-01-26gc #0. mark and sweep collector.Russ Cox
2009-01-26interface speedups and fixes.Russ Cox
2009-01-26implement new restrictions on whatRuss Cox
2009-01-22move math routines from package sys to package math,Russ Cox
2009-01-16casify, cleanup sysRuss Cox
2009-01-13Tweak code to make it easier to compile with gcc.Ian Lance Taylor
2009-01-09update sys.reflect and sys.unreflect to accomodateRuss Cox
2009-01-08many interface bug fixes.Russ Cox
2008-12-19[] and struct in interfaces.Russ Cox
2008-12-19chan and map of [] and structRuss Cox
2008-12-19malloc bug fixes.Russ Cox
2008-12-18print(array)Ken Thompson
2008-12-18arraysKen Thompson
2008-12-18malloc in runtime (not used by default)Russ Cox
2008-12-17small bugKen Thompson