1. 17 Oct, 2011 2 commits
  2. 05 Oct, 2011 6 commits
  3. 03 Oct, 2011 1 commit
    • Russ Cox's avatar
      [release-branch.r60] runtime: fix map memory leak · af68419a
      Russ Cox authored
      ««« CL 5158045 / aaf8ddb0c780
      runtime: fix map memory leak
      
      The map implementation was using the C idiom of using
      a pointer just past the end of its table as a limit pointer.
      Unfortunately, the garbage collector sees that pointer as
      pointing at the block adjacent to the map table, pinning
      in memory a block that would otherwise be freed.
      
      Fix by making limit pointer point at last valid entry, not
      just past it.
      
      Reviewed by Mike Burrows.
      
      R=golang-dev, bradfitz, lvd, r
      CC=golang-dev
      https://golang.org/cl/5158045
      »»»
      
      R=golang-dev, dsymonds
      CC=golang-dev
      https://golang.org/cl/5169047
      af68419a
  4. 19 Sep, 2011 3 commits
  5. 15 Sep, 2011 1 commit
  6. 13 Sep, 2011 3 commits
  7. 12 Sep, 2011 1 commit
  8. 08 Sep, 2011 14 commits
  9. 18 Aug, 2011 7 commits
  10. 17 Aug, 2011 2 commits