Files
go-proot/proot_linux_amd64.go
Matheus Sampaio Queiroga f941c61928 Update structs
Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>

Update structs

Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
2025-03-27 18:31:12 -03:00

10 lines
184 B
Go

//go:build (linux || android) && amd64
package proot
import "golang.org/x/sys/unix"
func (tracee *Tracee) fetchRegs() error {
return unix.PtraceGetRegs(tracee.PID, &tracee.Regs)
}