-
Notifications
You must be signed in to change notification settings - Fork 603
Comparing changes
Open a pull request
base repository: golang/sys
base: v0.35.0
head repository: golang/sys
compare: v0.36.0
- 8 commits
- 13 files changed
- 8 contributors
Commits on Aug 13, 2025
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 543f21a - Browse repository at this point
Copy the full SHA 543f21aView commit details
Commits on Aug 22, 2025
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 899c232 - Browse repository at this point
Copy the full SHA 899c232View commit details
Commits on Aug 25, 2025
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 9bd3753 - Browse repository at this point
Copy the full SHA 9bd3753View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for ab85cbb - Browse repository at this point
Copy the full SHA ab85cbbView commit details
Commits on Sep 3, 2025
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 0293703 - Browse repository at this point
Copy the full SHA 0293703View commit details
Commits on Sep 4, 2025
-
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]>
Configuration menu - View commit details
-
Copy full SHA for a4712b9 - Browse repository at this point
Copy the full SHA a4712b9View commit details
Commits on Sep 5, 2025
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 689cc11 - Browse repository at this point
Copy the full SHA 689cc11View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for b06ce05 - Browse repository at this point
Copy the full SHA b06ce05View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v0.35.0...v0.36.0