Thanks to visit codestin.com
Credit goes to github.com

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.35.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.36.0
Choose a head ref
  • 8 commits
  • 13 files changed
  • 8 contributors

Commits on Aug 13, 2025

  1. all: upgrade go directive to at least 1.24.0 [generated]

    By now Go 1.25.0 has been released, and Go 1.23 is no longer supported
    per the Go Release Policy (see https://go.dev/doc/devel/release#policy).
    
    For golang/go#69095.
    
    [git-generate]
    (cd . && go get [email protected] && go mod tidy && go fix ./... && go mod edit -toolchain=none)
    
    Change-Id: I0a3cdf3452806d955a3c293c9bdd59e4c1f56f8a
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/695616
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: David Chase <[email protected]>
    Reviewed-by: Dmitri Shuralyov <[email protected]>
    Auto-Submit: Gopher Robot <[email protected]>
    gopherbot committed Aug 13, 2025
    Configuration menu
    Copy the full SHA
    543f21a View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2025

  1. windows/mkwinsyscall: use syscall.SyscallN instead of syscall.Syscall…

    …{6,9,12,15}
    
    Replace syscall.Syscall6, Syscall9, Syscall12, and Syscall15 with
    syscall.SyscallN for Go 1.18+. This simplifies system calls by allowing
    the exact number of arguments needed, eliminating zero padding and
    reducing potential errors.
    
    Updated TestSyscallXGeneration to TestSyscallNGeneration to verify
    correct SyscallN generation for different argument counts.
    
    Change-Id: Iaf01c7bddd7ad6a80ee462879e382b0066f35b4d
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/691715
    Reviewed-by: Quim Muntal <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Auto-Submit: Sean Liao <[email protected]>
    Reviewed-by: Carlos Amedee <[email protected]>
    Reviewed-by: David Chase <[email protected]>
    mertakman authored and gopherbot committed Aug 22, 2025
    Configuration menu
    Copy the full SHA
    899c232 View commit details
    Browse the repository at this point in the history

Commits on Aug 25, 2025

  1. unix: switch (*CPUSet).Zero to clear builtin

    clear was added to Go 1.21 and is better than the manual loop approach.
    
    Change-Id: I851203714446e21b6329e2bcf308f2571d339e36
    GitHub-Last-Rev: 71dc7f0
    GitHub-Pull-Request: #262
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/698495
    Reviewed-by: Keith Randall <[email protected]>
    Reviewed-by: Cherry Mui <[email protected]>
    Reviewed-by: Keith Randall <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: Tobias Klauser <[email protected]>
    Auto-Submit: Keith Randall <[email protected]>
    cyphar authored and gopherbot committed Aug 25, 2025
    Configuration menu
    Copy the full SHA
    9bd3753 View commit details
    Browse the repository at this point in the history
  2. unix/linux: extend rtnetlink constants

    Change-Id: Icc356897519c0aa229a948918a253b9e4b367aff
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/697795
    Reviewed-by: Tobias Klauser <[email protected]>
    Reviewed-by: Carlos Amedee <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: Cherry Mui <[email protected]>
    Auto-Submit: Tobias Klauser <[email protected]>
    florianl authored and gopherbot committed Aug 25, 2025
    Configuration menu
    Copy the full SHA
    ab85cbb View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2025

  1. unix: add IFAL_* consts and ifaddrlblmsg on linux

    Implments consts and structs related to ifaddrlabel
    
    Change-Id: I6dd78e74a8e32a26286b95b0a7a20343cb16a446
    GitHub-Last-Rev: 11be45c
    GitHub-Pull-Request: #252
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/683775
    Reviewed-by: Tobias Klauser <[email protected]>
    Reviewed-by: Michael Pratt <[email protected]>
    Reviewed-by: Florian Lehner <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: Cherry Mui <[email protected]>
    Auto-Submit: Tobias Klauser <[email protected]>
    juanluisvaladas authored and gopherbot committed Sep 3, 2025
    Configuration menu
    Copy the full SHA
    0293703 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2025

  1. plan9: drop go version tags for unsupported versions

    go.mod specifies go 1.24. Drop code for older, unsupported versions.
    
    Change-Id: I8a1ecd9e5634c1cf9619fbb89b2ecd0bda7eaf21
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/579515
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Auto-Submit: Tobias Klauser <[email protected]>
    Reviewed-by: Sean Liao <[email protected]>
    Reviewed-by: Cherry Mui <[email protected]>
    Reviewed-by: Michael Pratt <[email protected]>
    tklauser authored and gopherbot committed Sep 4, 2025
    Configuration menu
    Copy the full SHA
    a4712b9 View commit details
    Browse the repository at this point in the history

Commits on Sep 5, 2025

  1. unix: fix Listen on solaris

    libsocket has __xnet_listen, not __xnet_llisten
    which prevents listen from working.
    
    Change-Id: Ia06dc569fcb9950893d91fc1b86257c7742e9e3d
    GitHub-Last-Rev: 6f37c4b
    GitHub-Pull-Request: #258
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/691735
    Reviewed-by: Michael Pratt <[email protected]>
    Auto-Submit: Tobias Klauser <[email protected]>
    Reviewed-by: Jes Cok <[email protected]>
    Reviewed-by: Keith Randall <[email protected]>
    Reviewed-by: Keith Randall <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: Tobias Klauser <[email protected]>
    jwntree authored and gopherbot committed Sep 5, 2025
    Configuration menu
    Copy the full SHA
    689cc11 View commit details
    Browse the repository at this point in the history
  2. windows: add FILE_ZERO_DATA_INFORMATION

    This is needed for invoking windows.DeviceIoControl with
    windows.FSCTL_SET_ZERO_DATA.
    
    Change-Id: I20f93a40a86b92e6bdeeec096ffc0245e8184672
    GitHub-Last-Rev: 01d299a
    GitHub-Pull-Request: #261
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/698436
    Auto-Submit: Michael Pratt <[email protected]>
    Reviewed-by: Quim Muntal <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: Michael Pratt <[email protected]>
    Reviewed-by: Cherry Mui <[email protected]>
    tomgr authored and gopherbot committed Sep 5, 2025
    Configuration menu
    Copy the full SHA
    b06ce05 View commit details
    Browse the repository at this point in the history
Loading