E5EF Comparing v0.27.0...v0.29.0 · golang/sys · GitHub
[go: up one dir, main page]

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: golang/sys
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.27.0
Choose a base ref
...
head repository: golang/sys
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.29.0
Choose a head ref
  • 8 commits
  • 28 files changed
  • 6 contributors

Commits on Nov 12, 2024

  1. windows: regenerate zsyscall_windows.go

    Change-Id: I714d13f534520a444dd9601d280d32c4427a8e69
    GitHub-Last-Rev: 861daf2
    GitHub-Pull-Request: #236
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/626379
    Commit-Queue: Ian Lance Taylor <iant@google.com>
    Reviewed-by: Alex Brainman <alex.brainman@gmail.com>
    Reviewed-by: Ian Lance Taylor <iant@google.com>
    Reviewed-by: Cherry Mui <cherryyz@google.com>
    Auto-Submit: Ian Lance Taylor <iant@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    MOHANKUMAR-IT authored and gopherbot committed Nov 12, 2024
    Configuration menu
    Copy the full SHA
    a13946c View commit details
    Browse the repository at this point in the history

Commits on Nov 13, 2024

  1. windows: add functions to get named pipe process IDs

    Fixes golang/go#70086
    
    Change-Id: I0cd188f075490b1ea630b26b74aa201796d60d3a
    GitHub-Last-Rev: 498fe73
    GitHub-Pull-Request: #235
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/626215
    Reviewed-by: David Chase <drchase@google.com>
    Reviewed-by: Carlos Amedee <carlos@golang.org>
    Auto-Submit: Ian Lance Taylor <iant@google.com>
    Reviewed-by: Quim Muntal <quimmuntal@gmail.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Ian Lance Taylor <iant@google.com>
    MOHANKUMAR-IT authored and gopherbot committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    d2cea70 View commit details
    Browse the repository at this point in the history
  2. unix: don't fail TestPpoll on EINTR

    TestPpoll sometimes fails builders due to Ppoll getting interrupted and
    returning EINTR:
    
    --- FAIL: TestPpoll (0.00s)
        syscall_linux_test.go:299: Ppoll: unexpected error: interrupted system call
    
    Fix this by retrying Ppoll in case of EINTR, same as CL 298189 in
    TestPoll.
    
    Fixes golang/go#66324
    
    Change-Id: I8ce4e2c00fe3b7a078cd75b4b15bb076d3a87fb2
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/627395
    Reviewed-by: Cherry Mui <cherryyz@google.com>
    Reviewed-by: Ian Lance Taylor <iant@google.com>
    Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    tklauser authored and gopherbot committed Nov 13, 2024
    Configuration menu
    Copy the full SHA
    3cf1e67 View commit details
    Browse the repo 10BC0 sitory at this point in the history

Commits on Nov 18, 2024

  1. unix: update to kernel Linux 6.12

    Change-Id: I7c8157d5f1b597b6ae249b20866bbad918b46fa4
    GitHub-Last-Rev: 0bbc2ef
    GitHub-Pull-Request: #238
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/629075
    Auto-Submit: Ian Lance Taylor <iant@google.com>
    Reviewed-by: Ian Lance Taylor <iant@google.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    mauri870 authored and gopherbot committed Nov 18, 2024
    Configuration menu
    Copy the full SHA
    0a57dbc View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2024

  1. unix: define IfMsghdr2, IfData64, and RtMsghdr2 on darwin

    Change-Id: I6943f6b5bd9f7d0ef5bad24ed638b8cf5dd0353d
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/633077
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Auto-Submit: Ian Lance Taylor <iant@golang.org>
    Reviewed-by: Damien Neil <dneil@google.com>
    Reviewed-by: Michael Knyszek <mknyszek@google.com>
    ianlancetaylor authored and gopherbot committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    fe16172 View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2024

  1. unix: add Dup3 on dragonfly

    Use the same implementation as on freebsd which is also what the
    dragonfly libc uses.
    
    Change-Id: I0ed513ae15fcb6dac77b2fc76f662723d66b75c6
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/636435
    Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com>
    Reviewed-by: Ian Lance Taylor <iant@google.com>
    Reviewed-by: Carlos Amedee <carlos@golang.org>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
    TryBot-Result: Gopher Robot <gobot@golang.org>
    tklauser authored and gopherbot committed Dec 17, 2024
    Configuration menu
    Copy the full SHA
    a7f19e9 View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2024

  1. windows: remove unused errString type

    It's no longer used since CL 165759.
    
    Change-Id: Ie8c834a6dd1147889ec47bf92a5d4cce08bbf4fd
    GitHub-Last-Rev: 3f0c460
    GitHub-Pull-Request: #241
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/638716
    Reviewed-by: Ian Lance Taylor <iant@google.com>
    Auto-Submit: Jorropo <jorropo.pgm@gmail.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Cherry Mui <cherryyz@google.com>
    Reviewed-by: Jorropo <jorropo.pgm@gmail.com>
    Auto-Submit: Ian Lance Taylor <iant@google.com>
    thaJeztah authored and gopherbot committed Dec 26, 2024
    Configuration menu
    Copy the full SHA
    680bd24 View commit details
    Browse the repository at this point in the history
  2. windows: update NewLazyDLL, LoadDLL docs to point to NewLazySystemDLL

    Point users to the NewLazySystemDLL utility that was added in CL 21592.
    
    Change-Id: I5fddd927fe6628f06a6266b225949c4227fb79f1
    GitHub-Last-Rev: 1fe36ed
    GitHub-Pull-Request: #240
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/638715
    Reviewed-by: Jorropo <jorropo.pgm@gmail.com>
    Auto-Submit: Ian Lance Taylor <iant@google.com>
    Auto-Submit: Jorropo <jorropo.pgm@gmail.com>
    LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
    Reviewed-by: Cherry Mui <cherryyz@google.com>
    Reviewed-by: Ian Lance Taylor <iant@google.com>
    thaJeztah authored and gopherbot committed Dec 26, 2024
    Configuration menu
    Copy the full SHA
    d4ac05d View commit details
    Browse the repository at this point in the history
Loading
0