1. ee24bfc runtime: unify mutex code across OSes by Dmitriy Vyukov · 13 years ago
  2. 6808da0 runtime: lock the main goroutine to the main OS thread during init by Russ Cox · 13 years ago
  3. c14b268 runtime: faster finalizers by Dmitriy Vyukov · 13 years ago
  4. d324f21 runtime: parallelize garbage collector mark + sweep by Russ Cox · 14 years ago
  5. 9fd2687 runtime: implement pprof support for windows by Hector Chu · 14 years ago
  6. 5c30325 runtime: eliminate handle churn when churning channels on Windows by Hector Chu · 14 years ago
  7. 7406379 runtime: syscall to return both AX and DX for windows/386 by Alex Brainman · 14 years ago
  8. 2a80882 runtime: use cgo runtime functions to call windows syscalls by Alex Brainman · 14 years ago
  9. 33e9d24 runtime: fix void warnings by Russ Cox · 14 years ago
  10. 03e9ea5 runtime: simplify stack traces by Russ Cox · 14 years ago
  11. 72e8348 runtime: speed up cgo calls by Alex Brainman · 14 years ago
  12. 3770b0e gc: implement nil chan support by Russ Cox · 14 years ago
  13. 65bde08 gc: implement nil map support by Russ Cox · 14 years ago
  14. a2677cf runtime: fix GC bitmap corruption by Dmitriy Vyukov · 14 years ago
  15. 9c774c3 runtime: correct seh installation during callbacks by Alex Brainman · 14 years ago
  16. 54e9406 runtime: add more specialized type algorithms by Dmitriy Vyukov · 14 years ago
  17. d770aad runtime: faster chan creation on Linux/FreeBSD/Plan9 by Dmitriy Vyukov · 14 years ago
  18. a496c9e runtime: correct Note documentation by Dmitriy Vyukov · 14 years ago
  19. 91f0f18 runtime: fix data race in findfunc() by Dmitriy Vyukov · 14 years ago
  20. 4e5086b runtime: improve Linux mutex by Dmitriy Vyukov · 14 years ago
  21. db9229d cgo: add GoBytes, fix gmp example by Russ Cox · 14 years ago
  22. d6ed1b7 runtime: replace centralized ncgocall counter with a distributed one by Dmitriy Vyukov · 14 years ago
  23. 86a659c runtime: fix data race during Itab hash update/lookup by Dmitriy Vyukov · 14 years ago
  24. fe9991e runtime: replace runtime.mcpy with runtime.memmove by Quan Yong Zhai · 14 years ago
  25. c9152a8 runtime: eliminate contention during stack allocation by Dmitriy Vyukov · 14 years ago
  26. 013ad89 runtime: eliminate false sharing on runtime.goidgen by Dmitriy Vyukov · 14 years ago
  27. 909f318 runtime: eliminate false sharing on random number generators by Dmitriy Vyukov · 14 years ago
  28. f83609f runtime: windows/amd64 port by Wei Guangjing · 14 years ago
  29. 997c00f runtime: replace Semacquire/Semrelease implementation by Dmitriy Vyukov · 14 years ago
  30. ddde52a runtime: SysMap uses MAP_FIXED if needed on 64-bit Linux by Jonathan Mark · 14 years ago
  31. 3fbd478 pkg: spelling tweaks, I-Z by Robert Hencke · 14 years ago
  32. b701cf3 runtime: make StackSystem part of StackGuard by Alexey Borzenkov · 14 years ago
  33. 370276a runtime: stack split + garbage collection bug by Russ Cox · 14 years ago
  34. 40fccbc reflect: more efficient; cannot Set result of NewValue anymore by Russ Cox · 14 years ago
  35. c19b373 runtime: cpu profiling support by Russ Cox · 14 years ago
  36. 8bf34e3 gc, runtime: replace closed(c) with x, ok := <-c by Russ Cox · 14 years ago
  37. f9ca3b5 runtime: scheduler, cgo reorganization by Russ Cox · 14 years ago
  38. 324cc3d0 runtime: record goroutine creation pc and display in traceback by Russ Cox · 14 years ago
  39. 582fd17 runtime: idle goroutine by Russ Cox · 14 years ago
  40. b5dfac4 runtime: always run stackalloc on scheduler stack by Russ Cox · 14 years ago
  41. d9fd114 ld: detect stack overflow due to NOSPLIT by Russ Cox · 14 years ago
  42. 6779350 runtime: minor cleanup by Russ Cox · 14 years ago
  43. 239ef63 runtime: take the callback return value from the stack by Hector Chu · 14 years ago
  44. b287d7c runtime: more detailed panic traces, line number work by Russ Cox · 14 years ago
  45. 62afa22 windows: multiple improvements and cleanups by Hector Chu · 14 years ago
  46. 7400be8 runtime: generate Go defs for C types. by Luuk van Dijk · 14 years ago
  47. 4608feb runtime: simpler heap map, memory allocation by Russ Cox · 14 years ago
  48. afc6928 runtime: prefer fixed stack allocator over general memory allocator by Russ Cox · 14 years ago
  49. b0543dd gc, runtime: make range on channel safe for multiple goroutines by Russ Cox · 14 years ago
  50. 1230700 runtime: print signal information during panic by Russ Cox · 14 years ago
  51. 141a4a1 runtime: fix arm reflect.call boundary case by Russ Cox · 14 years ago
  52. a41d854 runtime: revert 6974:1f3c3696babb by Alex Brainman · 14 years ago
  53. c834519 runtime: move windows goargs implementation from runtime and into os package by Alex Brainman · 14 years ago
  54. d110ae8 runtime: write only to standard error by Russ Cox · 14 years ago
  55. dc9a3b2 gc: align structs according to max alignment of fields by Russ Cox · 14 years ago
  56. ae60526 arm floating point simulation by Ken Thompson · 14 years ago
  57. 9042c2c runtime/cgo: runtime changes for new cgo by Russ Cox · 14 years ago
  58. 68b4255 runtime: ,s/[a-zA-Z0-9_]+/runtime·&/g, almost by Russ Cox · 14 years ago
  59. 7c2b159 arm: precise float64 software floating point by Russ Cox · 14 years ago
  60. 99a10ef 8l, runtime: initial support for Plan 9 by Yuval Pavel Zholkover · 14 years ago
  61. b33f5d5 fix arm bug in reflect.call by Ken Thompson · 14 years ago
  62. ed575dc bug in stack size in arm. stack is off by one if calling through reflect.Call by Ken Thompson · 14 years ago
  63. f47d403 gc: make string x + y + z + ... + w efficient by Russ Cox · 15 years ago
  64. f95a2f2 runtime(windows): make sure scheduler runs on os stack and new stdcall implementation by Alex Brainman · 15 years ago
  65. d4cc557 runtime: use manual stack for garbage collection by Russ Cox · 15 years ago
  66. 4d90350 runtime: special case copy, equal for one-word interface values by Kyle Consalus · 15 years ago
  67. 95fa16a cgo: add C.GoStringN by Eric Clark · 15 years ago
  68. 807605d Only catch all signals if os/signal package imported. by Ian Lance Taylor · 15 years ago
  69. 4843b13 runtime: avoid allocation for fixed strings by Russ Cox · 15 years ago
  70. eb48bfb runtime.GOMAXPROCS: hack it to have it return the old value. by Rob Pike · 15 years ago
  71. 6361f52 gc: be pickier about slice, chan, array, and map sizes by Russ Cox · 15 years ago
  72. f81d471 rename GOOS=mingw to GOOS=windows by Alex Brainman · 15 years ago
  73. 26e84642 support for printing floats: by Kai Backman · 15 years ago
  74. 6363542 runtime: delete malx, skip_depth argument to malloc by Russ Cox · 15 years ago
  75. 2e20386 Library support for cgo export. by Ian Lance Taylor · 15 years ago
  76. 5963dba runtime: turn divide by zero, nil dereference into panics by Russ Cox · 15 years ago
  77. 72157c3 runtime: fix bad status throw when garbage collector sees recovering goroutine by Russ Cox · 15 years ago
  78. d89b357 runtime: handle malloc > 2GB correctly by Russ Cox · 15 years ago
  79. 6c19601 runtime: various arm fixes by Russ Cox · 15 years ago
  80. f75d0d2 runtime: turn run time errors checks into panics by Russ Cox · 15 years ago
  81. 63e878a runtime: make type assertion a runtime.Error, the first of many by Russ Cox · 15 years ago
  82. 9b1507b gc: implement panic and recover by Russ Cox · 15 years ago
  83. 01eaf78 gc: add panic and recover (still unimplemented in runtime) by Russ Cox · 15 years ago
  84. 83727cc runtime: run deferred calls at Goexit by Russ Cox · 15 years ago
  85. 4e28cfe runtime: run all finalizers in a single goroutine. by Russ Cox · 15 years ago
  86. 6eb251f runtime: malloc sampling, pprof interface by Russ Cox · 15 years ago
  87. 596c16e runtime: add memory profiling, disabled. no way to get the data out yet. by Russ Cox · 15 years ago
  88. 2b7d147 runtime: add Callers by Russ Cox · 15 years ago
  89. f59cb49 fixed bug in mpconst float multiply by 0. by Ken Thompson · 15 years ago
  90. 62d627f runtime: allow arbitrary return type in SetFinalizer. by Russ Cox · 15 years ago
  91. e4f0681 runtime: instrument malloc + garbage collector. by Russ Cox · 15 years ago
  92. ebf32c5 fix comment by Kai Backman · 15 years ago
  93. 33e396a finalizers; merge package malloc into package runtime by Russ Cox · 15 years ago
  94. a186b77 gc: implement defer print/println/panic/panicln by Russ Cox · 15 years ago
  95. 718be32 in C and asm, replace pkg·name with ·name by Russ Cox · 15 years ago
  96. 5328df6 runtime: check for preemption due to garbage collection by Russ Cox · 15 years ago
  97. 6bfe5f5 Ported runtime to Windows. by Hector Chu · 15 years ago
  98. 50d6c81 runtime: fix race condition by Adam Langley · 15 years ago
  99. 08579c2 runtime: if os/signal is not in use, crash on by Russ Cox · 15 years ago
  100. b586649 os/signal: new package by David Symonds · 15 years ago