summaryrefslogtreecommitdiff
path: root/src/runtime
AgeCommit message (Expand)AuthorFilesLines
2015-01-15Imported Upstream version 1.4upstream/1.4Tianon Gravi414-0/+80158
2009-06-06move src/runtime -> src/lib/runtime;Russ Cox74-14718/+0
2009-06-05fix 386 malloc tests,Russ Cox1-1/+1
2009-06-05fix 386 log testRuss Cox1-12/+11
2009-06-04386-related fixes and guardsRuss Cox6-22/+33
2009-06-04more 386 runtime fixes.Russ Cox4-9/+64
2009-06-02386 library updatesRuss Cox1-1/+1
2009-06-0232-bit fixes in lessstack.Russ Cox4-25/+28
2009-05-29Fix godoc deadlock.Russ Cox1-2/+9
2009-05-2964-bit integer arithmetic.Russ Cox1-0/+14
2009-05-28detect recursive initializationKen Thompson1-0/+6
2009-05-27added protection against race conditionKen Thompson1-6/+10
2009-05-27string([]int) conversionKen Thompson1-0/+22
2009-05-268g: 64-bit arithmetic and assorted bug fixes;Russ Cox3-2/+32
2009-05-26add NUL when allocating strings, to make useRuss Cox2-5/+9
2009-05-2632-bit stack switching bug fixRuss Cox2-2/+2
2009-05-268g: hello world works againRuss Cox1-2/+2
2009-05-26Added enough arm related scaffolding to create a simpleKai Backman9-2/+197
2009-05-20stricter interface conversion rule: i.(T)Russ Cox1-8/+31
2009-05-20change representation of interface values.Russ Cox3-175/+306
2009-05-15fix handling of line numbers for first functionRuss Cox1-1/+2
2009-05-08move things out of sys into os and runtimeRuss Cox18-58/+70
2009-05-08Move sys.Reflect and sys.Unreflect into unsafe.Rob Pike1-5/+5
2009-05-056g tweaksRuss Cox1-8/+0
2009-05-03more morestack fiddlingKen Thompson1-0/+39
2009-05-01code improvementKen Thompson1-0/+24
2009-04-29don't set CLONE_PTRACE -- it confuses straceRuss Cox1-1/+3
2009-04-29Ignore SIGPIPE such that write returns EPIPE.Brendan O'Dea2-2/+2
2009-04-15fix traceback prints - %S was not advancing pointer enoughRuss Cox1-1/+5
2009-04-14do not create interfaces containing interfacesRuss Cox1-0/+5
2009-04-13runtime nits: variable name and commentsRuss Cox1-10/+10
2009-04-12tweakKen Thompson1-16/+13
2009-04-12fix string range to have full unicode range (up to 10FFFF).Rob Pike3-98/+116
2009-04-12change replacement rune to its correct value, fffdRob Pike1-1/+1
2009-04-10range over stringsKen Thompson1-0/+156
2009-04-09change representation of stringsKen Thompson7-114/+99
2009-04-02implement some more 8gRuss Cox1-0/+4
2009-04-02clarification suggested by robRuss Cox1-0/+4
2009-04-01fix runtime stack overflow bug that gri ran into:Russ Cox2-155/+211
2009-03-31test for and fix bug involving reflect v.Interface() and ==.Russ Cox2-7/+64
2009-03-31more 386 runtime:Russ Cox11-12/+939
2009-03-30more 386 runtime - can run tiny c programs.Russ Cox25-92/+1720
2009-03-24fix build:Russ Cox3-5/+6
2009-03-24split heapmap, which is specific to 64-bit pointer addresses,Russ Cox4-201/+214
2009-03-24convert Linux to auto-generated defs.hRuss Cox7-189/+292
2009-03-24convert darwin to use godefs-generated defs.h.Russ Cox6-429/+490
2009-03-24split rt1.c into signal.c and thread.c.Russ Cox6-430/+476
2009-03-24move darwin specific code into runtime/darwin/Russ Cox11-28/+20
2009-03-24move amd64-specific (but os-independent) pieces of runtimeRuss Cox4-126/+133
2009-03-23add test for close/closed, fix a few implementation bugs.Russ Cox1-28/+30