diff options
| author | qmuntal <quimmuntal@gmail.com> | 2025-07-21 14:39:04 +0200 |
|---|---|---|
| committer | Quim Muntal <quimmuntal@gmail.com> | 2025-07-28 09:47:09 -0700 |
| commit | c7ed3a1c5a152d0e610bbbf104dba30099e6942a (patch) | |
| tree | e89ef2d6b5a0bcc10f4174f8e67b88e559febc8e /src/runtime/os_aix.go | |
| parent | e81eac19d30f373496cd1d08ce2f89c0469a21fd (diff) | |
| download | go-c7ed3a1c5a152d0e610bbbf104dba30099e6942a.tar.xz | |
internal/runtime/syscall/windows: factor out code from runtime
Factor out the code related to doing calls using the Windows stdcall
calling convention into a separate package. This will allow us to
reuse it in other low-level packages that can't depend on syscall.
Updates #51087.
Cq-Include-Trybots: luci.golang.try:gotip-windows-arm64,gotip-windows-amd64-longtest,gotip-solaris-amd64
Change-Id: I68640b07091183b50da6bef17406c10a397896e9
Reviewed-on: https://go-review.googlesource.com/c/go/+/689156
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Knyszek <mknyszek@google.com>
Diffstat (limited to 'src/runtime/os_aix.go')
| -rw-r--r-- | src/runtime/os_aix.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/runtime/os_aix.go b/src/runtime/os_aix.go index 9d63c4d39d..4bb8576f42 100644 --- a/src/runtime/os_aix.go +++ b/src/runtime/os_aix.go @@ -27,6 +27,7 @@ type funcDescriptor struct { type mOS struct { waitsema uintptr // semaphore for parking on locks perrno uintptr // pointer to tls errno + libcall libcall } //go:nosplit |
