Remove go:nosplit from IncrementUnimplementedSyscallCounter

This enables the runsc binary to be build with `-c dbg`.

PiperOrigin-RevId: 657283482
This commit is contained in:
Ayush Ranjan
2024-07-29 12:12:55 -07:00
committed by gVisor bot
parent 8db16e8859
commit 5451f0dc82
-2
View File
@@ -500,8 +500,6 @@ type SyscallInfo struct {
// FIXME(gvisor.dev/issue/10556): checkescape can't distinguish between this
// file and files named syscalls.go in other directories, resulting in false
// positives, so this function cannot be +checkescape:all.
//
//go:nosplit
func IncrementUnimplementedSyscallCounter(sysno uintptr) {
s, found := unimplementedSyscallNumbers[sysno]
if !found {