1. 6583468 runtime: use GetQueuedCompletionStatusEx on windows if available by Dmitriy Vyukov · 12 years ago
  2. 98a80b9 runtime: use correct types for maxstring and concatstring by Rob Pike · 12 years ago
  3. 82f5ca1 runtime: change int32 to intgo in findnull and findnullw by Rob Pike · 12 years ago
  4. 9c0500b runtime: use gcpc/gcsp during traceback of goroutines in syscalls by Dmitriy Vyukov · 12 years ago
  5. d3066e4 runtime/pprof: test multithreaded profile, remove OS X workarounds by Russ Cox · 12 years ago
  6. f38ff9e undo CL 12250043 / e911f94c4902 by Dmitriy Vyukov · 12 years ago
  7. d5ab784 runtime: remove singleproc var by Dmitriy Vyukov · 12 years ago
  8. f73972f runtime: use gcpc/gcsp during traceback of goroutines in syscalls by Dmitriy Vyukov · 12 years ago
  9. 49217cf runtime: remove unused scheduler knob by Dmitriy Vyukov · 12 years ago
  10. 9cd5706 runtime: reimplement reflect.call to not use stack splitting. by Keith Randall · 12 years ago
  11. c33d490 runtime: print "created by" for running goroutines in traceback by Dmitriy Vyukov · 12 years ago
  12. 3d6bce4 runtime: fix code formatting by Dmitriy Vyukov · 12 years ago
  13. e84d9e1 runtime: do not split stacks in syscall status by Dmitriy Vyukov · 12 years ago
  14. 6350e45 runtime: allow SetFinalizer with a func(interface{}) by Pieter Droogendijk · 12 years ago
  15. e97d677 runtime: introduce notetsleepg function by Dmitriy Vyukov · 12 years ago
  16. 2713456 runtime: clarify comment for m->locked by Dmitriy Vyukov · 12 years ago
  17. c758841 cmd/ld, runtime: remove unused fields from Func by Russ Cox · 12 years ago
  18. 48769bf runtime: use funcdata to supply garbage collection information by Russ Cox · 12 years ago
  19. 6fc49c1 runtime: cleanup: use ArgsSizeUnknown to mark all functions by Keith Randall · 12 years ago
  20. c3de91b cmd/ld, runtime: use new contiguous pcln table by Russ Cox · 12 years ago
  21. 5887f14 runtime: more reliable preemption by Dmitriy Vyukov · 12 years ago
  22. a837485 runtime: use new frame argument size information by Russ Cox · 12 years ago
  23. 5d363c6 cmd/ld, runtime: new in-memory symbol table format by Russ Cox · 12 years ago
  24. fb63e4f runtime: make cas64 like cas32 and casp by Russ Cox · 12 years ago
  25. 4b536a5 runtime: introduce GODEBUG env var by Dmitriy Vyukov · 12 years ago
  26. 1e112cd runtime: preempt goroutines for GC by Dmitriy Vyukov · 12 years ago
  27. 6fa3c89 runtime: record proper goroutine state during stack split by Russ Cox · 12 years ago
  28. 8cd0689 runtime: remove unused typedef by Ian Lance Taylor · 12 years ago
  29. 05a5de3 runtime: do not generate code during runtime in windows NewCallback by Alex Brainman · 12 years ago
  30. 5caf762 runtime: remove unused moreframesize_minalloc field by Dmitriy Vyukov · 12 years ago
  31. d67e7e3 runtime: add lr, ctxt, ret to Gobuf by Russ Cox · 12 years ago
  32. e58f798 runtime: adjust traceback / garbage collector boundary by Russ Cox · 12 years ago
  33. b36f2db runtime: use persistentalloc instead of mallocgc for itab Reduces heap size. by Dmitriy Vyukov · 12 years ago
  34. f5becf4 runtime: add stackguard0 to G by Dmitriy Vyukov · 12 years ago
  35. e932c20 runtime: make notetsleep() return false if timeout happens by Dmitriy Vyukov · 12 years ago
  36. 4e0a51c cmd/5l, cmd/6l, cmd/8l, cmd/gc, runtime: generate and use bitmaps of argument pointer locations by Carl Shapiro · 12 years ago
  37. 081129e runtime: allocate internal symbol table eagerly we need it for GC anyway. by Dmitriy Vyukov · 12 years ago
  38. 34c67eb runtime: detect deadlocks in programs using cgo by Dmitriy Vyukov · 12 years ago
  39. 38abb09 runtime: change PollDesc.fd from int32 to uintptr by Alex Brainman · 12 years ago
  40. 6732ad9 runtime: make CgoMal alloc field void* by Ian Lance Taylor · 12 years ago
  41. 58030c5 runtime: change Note from union to struct by Dmitriy Vyukov · 12 years ago
  42. d617454 runtime: change Lock from union to struct by Dmitriy Vyukov · 12 years ago
  43. 54340bf runtime: reset dangling typed pointer by Dmitriy Vyukov · 12 years ago
  44. 3d5daa2 runtime: Implement faster equals for strings and bytes. by Keith Randall · 12 years ago
  45. c676b8b cmd/ld, runtime: restrict stack root scan to locals and arguments by Carl Shapiro · 12 years ago
  46. ea15104 net: band-aid for windows network poller by Dmitriy Vyukov · 12 years ago
  47. 4484078 runtime: explicitly remove fd's from epoll waitset before close() Fixes #5061. by Dmitriy Vyukov · 12 years ago
  48. 00224a3 runtime: faster hashmap implementation. by Keith Randall · 12 years ago
  49. 5146a93 runtime: accept GOTRACEBACK=crash to mean 'crash after panic' by Russ Cox · 12 years ago
  50. cb4428e os/signal: add Stop, be careful about SIGHUP by Russ Cox · 12 years ago
  51. 5b79aa8 runtime: revert UseSpanType back to 1 by Dmitriy Vyukov · 12 years ago
  52. 0bee99a runtime: integrated network poller for darwin by Dmitriy Vyukov · 12 years ago
  53. a5d4024 runtime: faster & safer hash function by Keith Randall · 12 years ago
  54. c211884 runtime: add network polling support into scheduler by Dmitriy Vyukov · 12 years ago
  55. 6ee739d runtime: fix deadlock detector false negative by Dmitriy Vyukov · 12 years ago
  56. 433824d runtime: fix misaligned 64-bit atomic Fixes #4869. Fixes #5007. Update #5005. by Dmitriy Vyukov · 12 years ago
  57. 1b8f51c runtime: fix integer overflow in amd64 memmove. by Rémy Oudompheng · 12 years ago
  58. a566dea syscall: Plan 9: use lightweight errstr in entersyscall mode by Akshat Kumar · 12 years ago
  59. e0deb2e undo CL 7301062 / 9742f722b558 by Russ Cox · 12 years ago
  60. add3349 runtime: add atomic xchg64 It will be handy for network poller. by Dmitriy Vyukov · 12 years ago
  61. d0c11d2 runtime: declare addtimer/deltimer in runtime.h by Dmitriy Vyukov · 12 years ago
  62. db018bf runtime: restrict stack root scan to locals and arguments by Carl Shapiro · 12 years ago
  63. 3611553 runtime: add atomics to fix arm by Russ Cox · 12 years ago
  64. e6a3e22 runtime: start all threads with runtime.mstart by Russ Cox · 12 years ago
  65. d0d7416 runtime: more build fixing by Russ Cox · 12 years ago
  66. c5f694a runtime: fix new scheduler on freebsd, windows by Russ Cox · 12 years ago
  67. 779c45a runtime: improved scheduler by Dmitriy Vyukov · 12 years ago
  68. 6cdfb00 runtime: more changes in preparation to the new scheduler by Dmitriy Vyukov · 12 years ago
  69. a656f82 runtime: precise garbage collection of channels by Jan Ziak · 12 years ago
  70. 353ce60 runtime: implement local work queues (in preparation for new scheduler) by Dmitriy Vyukov · 12 years ago
  71. 6066fdc cmd/6g, cmd/8g: switch to DX for indirect call block by Russ Cox · 12 years ago
  72. 1903ad7 cmd/gc, reflect, runtime: switch to indirect func value representation by Russ Cox · 12 years ago
  73. f466617 cmd/5g, cmd/5l, cmd/6l, cmd/8l, cmd/gc, cmd/ld, runtime: accurate args and locals information by Carl Shapiro · 12 years ago
  74. a0955a2 runtime: split minit() to mpreinit() and minit() by Dmitriy Vyukov · 12 years ago
  75. 6c97639 runtime: allow cgo callbacks on non-Go threads by Russ Cox · 12 years ago
  76. e25f19a runtime: introduce entersyscallblock() In preparation for the new scheduler. by Dmitriy Vyukov · 12 years ago
  77. 7f9c02a runtime: add conversion specifier to printf for char values by Carl Shapiro · 12 years ago
  78. c7f7bbb runtime: fix build on linux by Russ Cox · 12 years ago
  79. f3407f4 runtime: fix running under nohup by Russ Cox · 12 years ago
  80. 0a40cd2 runtime/race: switch to explicit race context instead of goroutine id's by Dmitriy Vyukov · 12 years ago
  81. b0a29f3 runtime: cgo-related fixes by Russ Cox · 12 years ago
  82. 4da6b36 runtime: local allocation in mprof.goc by Jan Ziak · 12 years ago
  83. c74f3c4 runtime: add support for panic/recover in Plan 9 note handler by Akshat Kumar · 12 years ago
  84. 81221f5 runtime: dump the full stack of a throwing goroutine by Dmitriy Vyukov · 12 years ago
  85. 4019d0e runtime: avoid defining the same variable in more than one translation unit by Shenghou Ma · 12 years ago
  86. f82db7d runtime: less aggressive per-thread stack segment caching by Dmitriy Vyukov · 12 years ago
  87. 63bee95 runtime: always incorporate hash seed at start of hash computation by Ian Lance Taylor · 12 years ago
  88. 0de7161 runtime: aggregate defer allocations by Russ Cox · 12 years ago
  89. 70e967b runtime: use "mp" and "gp" instead of "m" and "g" for local variable name to avoid confusion with the global "m" and "g". by Jingcheng Zhang · 12 years ago
  90. 51b8edc runtime: use reflect·call() to enter the function gc() by Jan Ziak · 12 years ago
  91. e9a3087 runtime, runtime/cgo: track memory allocated by non-Go code by Ian Lance Taylor · 12 years ago
  92. 5c1422a runtime: move Itab to runtime.h by Jan Ziak · 12 years ago
  93. 320df44 runtime: switch to 64-bit goroutine ids Fixes #4275. by Dmitriy Vyukov · 12 years ago
  94. 4a191c2 runtime: store types of allocated objects by Jan Ziak · 12 years ago
  95. 90ad6a2 runtime: update comment for the "extern register" variables g and m. by Nigel Tao · 12 years ago
  96. 2f6cbc7 race: runtime changes by Dmitriy Vyukov · 12 years ago
  97. 4cc7bf3 pprof: add goroutine blocking profiling by Dmitriy Vyukov · 12 years ago
  98. 10ea651 build: make int 64 bits on amd64 by Russ Cox · 13 years ago
  99. f8c5837 runtime: add types to MSpan by Jan Ziak · 13 years ago
  100. 0b08c94 runtime: prepare for 64-bit ints by Russ Cox · 13 years ago