]> Cypherpunks repositories - gostls13.git/commit
runtime: move Windows types and consts to internal/runtime/syscall/windows
authorqmuntal <quimmuntal@gmail.com>
Thu, 21 Aug 2025 19:23:03 +0000 (21:23 +0200)
committerQuim Muntal <quimmuntal@gmail.com>
Fri, 12 Sep 2025 19:00:33 +0000 (12:00 -0700)
commit889e71c2ac43f22dbd41c0b935acac2e778c8f87
treee6fe466d35cfc41e3ade6fcfe7fb62988af05580
parentcc8a6780acf192b0df2ecfab65bd8c2b5ab1f809
runtime: move Windows types and consts to internal/runtime/syscall/windows

This CL doesn't change any behavior, it just moves code around to reduce
the size of the runtime package and remove some duplicated symbols.

Updates #51087.

Cq-Include-Trybots: luci.golang.try:gotip-windows-arm64
Change-Id: I3d3e5f214f045c24fb5d4050d56e7b0822a6e4b5
Reviewed-on: https://go-review.googlesource.com/c/go/+/698098
Reviewed-by: Cherry Mui <cherryyz@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
19 files changed:
src/internal/runtime/syscall/windows/defs_windows.go [new file with mode: 0644]
src/internal/runtime/syscall/windows/defs_windows_386.go [new file with mode: 0644]
src/internal/runtime/syscall/windows/defs_windows_amd64.go [new file with mode: 0644]
src/internal/runtime/syscall/windows/defs_windows_arm64.go [new file with mode: 0644]
src/internal/syscall/windows/memory_windows.go [deleted file]
src/internal/syscall/windows/types_windows.go
src/runtime/defs_windows.go [deleted file]
src/runtime/defs_windows_386.go [deleted file]
src/runtime/defs_windows_amd64.go [deleted file]
src/runtime/defs_windows_arm64.go [deleted file]
src/runtime/export_windows_test.go
src/runtime/netpoll_windows.go
src/runtime/os_windows.go
src/runtime/os_windows_arm64.go
src/runtime/runtime-seh_windows_test.go
src/runtime/signal_windows.go
src/runtime/signal_windows_386.go [new file with mode: 0644]
src/runtime/signal_windows_amd64.go [new file with mode: 0644]
src/runtime/signal_windows_arm64.go [new file with mode: 0644]