aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/runtime.c
AgeCommit message (Expand)Author
2014-11-11[dev.cc] runtime: convert basic library routines from C to GoRuss Cox
2014-10-28runtime: add GODEBUG invalidptr settingRuss Cox
2014-09-24cmd/cc, cmd/ld, runtime: disallow conservative data/bss objectsRuss Cox
2014-09-18runtime: fix handling of GOTRACEBACKDavid du Colombier
2014-09-12runtime: remove a few untyped allocationsRuss Cox
2014-09-09runtime: merge mallocgc, gomallocgcRuss 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-05-28detect recursive initializationKen Thompson
2009-05-20change representation of interface values.Russ Cox
2009-05-08move things out of sys into os and runtimeRuss Cox
2009-04-09change representation of stringsKen Thompson
2009-03-31test for and fix bug involving reflect v.Interface() and ==.Russ Cox
2009-03-31more 386 runtime:Russ Cox
2009-03-30more 386 runtime - can run tiny c programs.Russ Cox
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
2008-12-19chan and map of [] and structRuss Cox
2008-12-10string hash function faults w empty stringKen Thompson
2008-12-09chans and maps of interfacesRuss Cox
2008-12-05add support for ref counts to memory allocator.Russ Cox
2008-11-23delete stack mark stringsRuss Cox
2008-11-20don't print (incorrect anyway) line numbers in panic.Rob Pike
2008-11-20symbol table changesRuss Cox
2008-11-17First pieces of malloc.Russ Cox
2008-11-14add cov, prof to default build; clean up compiler warningsRuss Cox
2008-11-13mike's map codeKen Thompson
2008-11-12converting uint bits back into floatsRob Pike
2008-11-10* accept all NaNs, not just the one sys.NaN() returns.Russ Cox
2008-11-10handle Inf, NaN in float printRuss Cox
2008-11-06add sys.float32bits, sys.float64bitsRob Pike
2008-11-05select defaultKen Thompson
2008-09-22test cleanupRuss Cox
2008-09-22now method/interface codeKen Thompson
2008-09-14methods on any typeKen Thompson
2008-09-121 got rid if static 'fn wo return' testKen Thompson
2008-09-12- catch trace trapsRob Pike
2008-08-11- fix signedness bug in sys.Inf()Rob Pike
2008-08-05kill trailing white space.Russ Cox
2008-08-05* comment, clean up schedulerRuss Cox
2008-08-05allow pointers as keys in maps, treating them the same as ints - ptr eq not v...Rob Pike
2008-08-04first cut at multithreading. works on Linux.Russ Cox
2008-07-28print tracebacks for all goroutines, not just the crashing oneRob Pike
2008-07-14synch chanKen Thompson
2008-07-13chanKen Thompson
2008-07-12preserve AX across stack jump so C routines return correct value when trigger...Rob Pike