1. 11 Mar, 2014 8 commits
  2. 10 Mar, 2014 7 commits
  3. 09 Mar, 2014 1 commit
  4. 08 Mar, 2014 1 commit
  5. 07 Mar, 2014 21 commits
  6. 06 Mar, 2014 2 commits
    • Russ Cox's avatar
      cmd/go: add test case for cgo coverage · 9abcd53e
      Russ Cox authored
      This is a test case for CL 34680044.
      
      Fixes #6333.
      
      LGTM=bradfitz
      R=golang-codereviews, bradfitz, minux.ma
      CC=golang-codereviews
      https://golang.org/cl/71230049
      9abcd53e
    • Russ Cox's avatar
      runtime: fix malloc page alignment + efence · da1bea0e
      Russ Cox authored
      Two memory allocator bug fixes.
      
      - efence is not maintaining the proper heap metadata
        to make eventual memory reuse safe, so use SysFault.
      
      - now that our heap PageSize is 8k but most hardware
        uses 4k pages, SysAlloc and SysReserve results must be
        explicitly aligned. Do that in a few more call sites and
        document this fact in malloc.h.
      
      Fixes #7448.
      
      LGTM=iant
      R=golang-codereviews, josharian, iant
      CC=dvyukov, golang-codereviews
      https://golang.org/cl/71750048
      da1bea0e