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.42.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.43.0
Choose a head ref
  • 4 commits
  • 5 files changed
  • 2 contributors

Commits on Mar 20, 2026

  1. cpu: roll back "use IsProcessorFeaturePresent to calculate ARM64 on w…

    …indows"
    
    Roll back CL 740880 (commit fc646e4)
    because it adds a golang.org/x/sys/windows import to the cpu package.
    The cpu package is vendored into the main Go tree and the policy there
    does not currently permit this dependency.
    
    For golang/go#76791.
    Fixes golang/go#78259.
    
    Change-Id: I72860cdf98192f4cbd2b3398926203a752d8d0fe
    Cq-Include-Trybots: luci.golang.try:x_sys-gotip-windows-arm64
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/757482
    Reviewed-by: Michael Pratt <[email protected]>
    Reviewed-by: Dmitri Shuralyov <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Auto-Submit: Dmitri Shuralyov <[email protected]>
    dmitshur authored and gopherbot committed Mar 20, 2026
    Configuration menu
    Copy the full SHA
    a76ec62 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2026

  1. windows: use syscall.SyscallN in Proc.Call

    All the SyscallX functions are deprecated in favor of SyscallN. The
    latter is easier to use, supports more arguments, and uses less stack.
    
    Autogenerated wrappers already switch to SyscallN in https://go-review.googlesource.com/c/sys/+/691715.
    
    Fixes golang/go#78317
    
    Change-Id: I7e56e713d1c20558e9932d757299796836c9c04f
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/758700
    Reviewed-by: Damien Neil <[email protected]>
    Auto-Submit: Quim Muntal <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: Dmitri Shuralyov <[email protected]>
    qmuntal authored and gopherbot committed Mar 24, 2026
    Configuration menu
    Copy the full SHA
    2c2be75 View commit details
    Browse the repository at this point in the history

Commits on Mar 26, 2026

  1. cpu: add runtime import in cpu_darwin_arm64_other.go

    It was missed in CL 737260.
    
    For golang/go#43046.
    
    Change-Id: I05194333831ad04e43e22b7b34362fe01f50c000
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/759160
    Auto-Submit: Dmitri Shuralyov <[email protected]>
    Reviewed-by: Dmitri Shuralyov <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: Keith Randall <[email protected]>
    Reviewed-by: Egon Elbre <[email protected]>
    Reviewed-by: Keith Randall <[email protected]>
    dmitshur authored and gopherbot committed Mar 26, 2026
    Configuration menu
    Copy the full SHA
    493d172 View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2026

  1. windows: support nil security descriptor on GetNamedSecurityInfo

    GetNamedSecurityInfoW may return a nil security descriptor when the
    object exists but has no security descriptor. This change allows
    GetNamedSecurityInfo to return a nil *SECURITY_DESCRIPTOR in that case,
    instead of crashing when trying to copy the nil security descriptor.
    
    Fixes golang/go#78396
    
    Change-Id: I2f8d26a431e0a5c3de535cf8983db1465acc24fe
    Reviewed-on: https://go-review.googlesource.com/c/sys/+/760160
    Reviewed-by: Dmitri Shuralyov <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: Damien Neil <[email protected]>
    qmuntal committed Mar 27, 2026
    Configuration menu
    Copy the full SHA
    f33a730 View commit details
    Browse the repository at this point in the history
Loading