aboutsummaryrefslogtreecommitdiff
path: root/src/syscall
diff options
context:
space:
mode:
authorAndy Pan <panjf2000@gmail.com>2024-01-31 17:10:49 +0800
committerMichael Pratt <mpratt@google.com>2024-02-21 21:28:32 +0000
commit05c0579621b54cc461dd19dd9bebd5a2b3e7af3c (patch)
tree6fb8a9111da9f4ed7f2838308ab6bac509a94639 /src/syscall
parentcdf3249d74c4187bc0c1737e1bb6ab1aa52c0b6f (diff)
downloadgo-05c0579621b54cc461dd19dd9bebd5a2b3e7af3c.tar.gz
go-05c0579621b54cc461dd19dd9bebd5a2b3e7af3c.zip
runtime: migrate internal/syscall to internal/runtime
For #65355 Change-Id: I5fefe30dcb520159de565e61dafc74a740fc8730 Reviewed-on: https://go-review.googlesource.com/c/go/+/559715 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/syscall')
-rw-r--r--src/syscall/syscall_linux.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syscall/syscall_linux.go b/src/syscall/syscall_linux.go
index b6e84203e8..5c6a91265d 100644
--- a/src/syscall/syscall_linux.go
+++ b/src/syscall/syscall_linux.go
@@ -17,9 +17,9 @@ import (
"unsafe"
)
-// N.B. RawSyscall6 is provided via linkname by runtime/internal/syscall.
+// N.B. RawSyscall6 is provided via linkname by internal/runtime/syscall.
//
-// Errno is uintptr and thus compatible with the runtime/internal/syscall
+// Errno is uintptr and thus compatible with the internal/runtime/syscall
// definition.
func RawSyscall6(trap, a1, a2, a3, a4, a5, a6 uintptr) (r1, r2 uintptr, err Errno)