Tag

syscall

1 views collected around this technical thread.

Laravel Tech Community
Laravel Tech Community
Nov 2, 2022 · Backend Development

Go 1.19.3 and 1.18.8 Release: Security Fixes for os/exec and syscall Packages

Go versions 1.19.3 and 1.18.8 were released, each containing a security fix that addresses unsanitized NUL handling in the os/exec and syscall packages, particularly on Windows, and includes runtime error corrections.

BackendGoProgramming
0 likes · 2 min read
Go 1.19.3 and 1.18.8 Release: Security Fixes for os/exec and syscall Packages
Didi Tech
Didi Tech
Apr 18, 2019 · Fundamentals

Understanding Go's Syscall Mechanism and Runtime Interaction

Go’s syscall mechanism uses assembly‑implemented entry functions like Syscall and Syscall6 to invoke the kernel, while the runtime’s entersyscall and exitsyscall hooks notify the scheduler, allowing P resources to be released during blocking calls and handling privileged low‑level syscalls separately.

ConcurrencyGolow-level
0 likes · 17 min read
Understanding Go's Syscall Mechanism and Runtime Interaction