freebsd-dev/sys/arm64/include/ptrace.h
Olivier Houchard d78c2cd831 arm64: Implement cpu_ptrace().
Add a minimal implementation of cpu_ptrace() for arm64. It is only used to
get/set VFP registers for 32bits binaries, as it is apparently what we use
there, instead of the MI PT_GETFPREGS/PT_SETFPREGS.

PR:	267361
MFC After: 1 week
2022-10-27 23:25:56 +02:00

12 lines
222 B
C

/* $FreeBSD$ */
#ifndef _MACHINE_PTRACE_H_
#define _MACHINE_PTRACE_H_
#define __HAVE_PTRACE_MACHDEP
#define PT_GETVFPREGS32 (PT_FIRSTMACH + 0)
#define PT_SETVFPREGS32 (PT_FIRSTMACH + 1)
#endif /* _MACHINE_PTRACE_H_ */