1. 11 Dec, 2017 1 commit
  2. 08 Dec, 2017 2 commits
  3. 07 Dec, 2017 1 commit
  4. 06 Dec, 2017 1 commit
  5. 30 Nov, 2017 2 commits
  6. 29 Nov, 2017 1 commit
  7. 28 Nov, 2017 2 commits
  8. 27 Nov, 2017 2 commits
  9. 24 Nov, 2017 1 commit
    • Tobias Klauser's avatar
      unix: add Fstatat on Linux for all GOOSes · 4ff8c001
      Tobias Klauser authored
      Looks like it's enough to just add wrappers pointing to the
      corresponding SYS_FSTATAT{,64} or SYS_NEWFSTATAT syscall. Add a test to
      verify that assumption which checks that the returned stat data matches
      what is returned by Stat/Lstat.
      
      Also add the AT_NO_AUTOMOUNT constant which may be used for the flags
      parmeter.
      
      Fixes golang/go#14216
      
      Change-Id: I73f27b483bd97d2dcf09d4b95a7957e75d194395
      Reviewed-on: https://go-review.googlesource.com/79795
      Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
      4ff8c001
  10. 23 Nov, 2017 1 commit
  11. 21 Nov, 2017 1 commit
  12. 20 Nov, 2017 1 commit
  13. 19 Nov, 2017 1 commit
  14. 17 Nov, 2017 1 commit
  15. 14 Nov, 2017 1 commit
  16. 13 Nov, 2017 1 commit
  17. 10 Nov, 2017 1 commit
  18. 09 Nov, 2017 1 commit
  19. 08 Nov, 2017 1 commit
  20. 07 Nov, 2017 2 commits
  21. 06 Nov, 2017 4 commits
  22. 04 Nov, 2017 1 commit
  23. 03 Nov, 2017 2 commits
  24. 02 Nov, 2017 2 commits
  25. 31 Oct, 2017 3 commits
  26. 28 Oct, 2017 1 commit
  27. 27 Oct, 2017 2 commits
    • Tobias Klauser's avatar
      unix: add Poll function on OpenBSD · b98136db
      Tobias Klauser authored
      Tested with TestPoll extracted from syscall_linux_test.go. Once Poll is
      supported on all OSes this test can be moved to syscall_unix_test.go.
      
      Change-Id: Ic7ad2e749039e2e81612c2085d6fab73581d59f9
      Reviewed-on: https://go-review.googlesource.com/73872
      Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      b98136db
    • Tobias Klauser's avatar
      unix: update Dockerfile to go 1.9.2 · 52c393dd
      Tobias Klauser authored
      Update go to 1.9.2 in the Dockerfile used to generate the Linux go files.
      
      The update also changes some zerror definitions: RLIM_INFINITY is
      assigned to Rlimit.{Cur,Max} which are both uint64 on all architectures.
      PR_SET_PTRACER_ANY is used with Prctl which expects an uintptr.
      
      With the current version, an "constant -1 overflows uint64" error would
      result if these constants were used directly without type conversion.
      
      Change-Id: Iefd23a44e983b4fcf210121776531df225014112
      Reviewed-on: https://go-review.googlesource.com/73873
      Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
      TryBot-Result: Gobot Gobot <gobot@golang.org>
      Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      52c393dd