summaryrefslogtreecommitdiff
path: root/src/runtime/runtime.c
Commit message (Expand)AuthorAgeFilesLines
* [dev.cc] runtime: convert basic library routines from C to GoRuss Cox2014-11-111-399/+0
* runtime: add GODEBUG invalidptr settingRuss Cox2014-10-281-0/+4
* cmd/cc, cmd/ld, runtime: disallow conservative data/bss objectsRuss Cox2014-09-241-9/+16
* runtime: fix handling of GOTRACEBACKDavid du Colombier2014-09-181-11/+11
* runtime: remove a few untyped allocationsRuss Cox2014-09-121-8/+4
* runtime: merge mallocgc, gomallocgcRuss Cox2014-09-091-2/+3
* build: move package sources from src/pkg to srcRuss Cox2014-09-081-0/+391
* move src/runtime -> src/lib/runtime;Russ Cox2009-06-061-462/+0
* 386-related fixes and guardsRuss Cox2009-06-041-8/+14
* detect recursive initializationKen Thompson2009-05-281-0/+6
* change representation of interface values.Russ Cox2009-05-201-1/+23
* move things out of sys into os and runtimeRuss Cox2009-05-081-14/+14
* change representation of stringsKen Thompson2009-04-091-12/+10
* test for and fix bug involving reflect v.Interface() and ==.Russ Cox2009-03-311-6/+4
* more 386 runtime:Russ Cox2009-03-311-4/+7
* more 386 runtime - can run tiny c programs.Russ Cox2009-03-301-3/+13
* gc #0. mark and sweep collector.Russ Cox2009-01-261-10/+14
* interface speedups and fixes.Russ Cox2009-01-261-0/+36
* implement new restrictions on whatRuss Cox2009-01-261-31/+26
* move math routines from package sys to package math,Russ Cox2009-01-221-255/+0
* casify, cleanup sysRuss Cox2009-01-161-60/+41
* chan and map of [] and structRuss Cox2008-12-191-17/+18
* string hash function faults w empty stringKen Thompson2008-12-101-0/+2
* chans and maps of interfacesRuss Cox2008-12-091-1/+2
* add support for ref counts to memory allocator.Russ Cox2008-12-051-77/+0
* delete stack mark stringsRuss Cox2008-11-231-59/+16
* don't print (incorrect anyway) line numbers in panic.Rob Pike2008-11-201-3/+1
* symbol table changesRuss Cox2008-11-201-0/+31
* First pieces of malloc.Russ Cox2008-11-171-1/+1
* add cov, prof to default build; clean up compiler warningsRuss Cox2008-11-141-0/+1
* mike's map codeKen Thompson2008-11-131-9/+35
* converting uint bits back into floatsRob Pike2008-11-121-0/+28
* * accept all NaNs, not just the one sys.NaN() returns.Russ Cox2008-11-101-36/+60
* handle Inf, NaN in float printRuss Cox2008-11-101-2/+2
* add sys.float32bits, sys.float64bitsRob Pike2008-11-061-0/+17
* select defaultKen Thompson2008-11-051-1/+4
* test cleanupRuss Cox2008-09-221-2/+15
* now method/interface codeKen Thompson2008-09-221-170/+0
* methods on any typeKen Thompson2008-09-141-0/+1
* 1 got rid if static 'fn wo return' testKen Thompson2008-09-121-0/+12
* - catch trace trapsRob Pike2008-09-121-1/+3
* - fix signedness bug in sys.Inf()Rob Pike2008-08-111-1/+1
* kill trailing white space.Russ Cox2008-08-051-3/+3
* * comment, clean up schedulerRuss Cox2008-08-051-33/+37
* allow pointers as keys in maps, treating them the same as ints - ptr eq not v...Rob Pike2008-08-051-3/+4
* first cut at multithreading. works on Linux.Russ Cox2008-08-041-25/+93
* print tracebacks for all goroutines, not just the crashing oneRob Pike2008-07-281-0/+1
* synch chanKen Thompson2008-07-141-228/+0
* chanKen Thompson2008-07-131-2/+145
* preserve AX across stack jump so C routines return correct value when trigger...Rob Pike2008-07-121-10/+10