1. 16 Jul, 2013 1 commit
  2. 18 Jun, 2013 1 commit
    • compiler, runtime: Use function descriptors. · fdbc38a6
      This changes the representation of a Go value of function type
      from being a pointer to function code (like a C function
      pointer) to being a pointer to a struct.  The first field of
      the struct points to the function code.  The remaining fields,
      if any, are the addresses of variables referenced in enclosing
      functions.  For each call to a function, the address of the
      function descriptor is passed as the last argument.
      
      This lets us avoid generating trampolines, and removes the use
      of writable/executable sections of the heap.
      
      From-SVN: r200181
      Ian Lance Taylor committed
  3. 01 Mar, 2013 1 commit
  4. 20 Feb, 2013 1 commit
  5. 10 Feb, 2013 1 commit
  6. 08 Feb, 2013 1 commit
  7. 07 Feb, 2013 2 commits
  8. 06 Feb, 2013 1 commit
  9. 30 Jan, 2013 1 commit
  10. 29 Jan, 2013 1 commit
  11. 24 Jan, 2013 2 commits
  12. 22 Dec, 2012 1 commit
  13. 21 Dec, 2012 1 commit
  14. 17 Dec, 2012 1 commit
  15. 12 Dec, 2012 1 commit
  16. 06 Dec, 2012 1 commit
  17. 05 Dec, 2012 1 commit
  18. 29 Nov, 2012 1 commit
  19. 24 Nov, 2012 1 commit
  20. 21 Nov, 2012 1 commit
  21. 19 Nov, 2012 1 commit
  22. 12 Nov, 2012 1 commit
  23. 10 Nov, 2012 1 commit
  24. 06 Nov, 2012 1 commit
  25. 05 Nov, 2012 1 commit
  26. 02 Nov, 2012 1 commit
  27. 01 Nov, 2012 1 commit
  28. 26 Oct, 2012 1 commit
    • syscall: fix creds_test to reliably close os.File · 85c2f96c
      Uncovered by Uros Bizjak.
      
      Before this patch the test would close the file descriptor but
      not the os.File.  When the os.File was GC'ed, the finalizer
      would close the file descriptor again.  That would cause
      problems if the same file descriptor were returned by a later
      call to open in another test.
      
      On my system:
      
      > GOGC=30 go test
      --- FAIL: TestPassFD (0.04 seconds)
      passfd_test.go:62: 	FileConn: dup: bad file descriptor
      FAIL
      
      From-SVN: r192854
      Ian Lance Taylor committed
  29. 25 Oct, 2012 1 commit
  30. 23 Oct, 2012 2 commits
  31. 03 Oct, 2012 1 commit
  32. 28 Sep, 2012 1 commit
  33. 06 Sep, 2012 1 commit
  34. 23 Aug, 2012 1 commit
  35. 26 Jul, 2012 1 commit
  36. 25 Jun, 2012 1 commit
  37. 14 Jun, 2012 1 commit