diff options
Diffstat (limited to 'sys/arm/include/ptrace.h')
| -rw-r--r-- | sys/arm/include/ptrace.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sys/arm/include/ptrace.h b/sys/arm/include/ptrace.h new file mode 100644 index 000000000000..d930ab80f179 --- /dev/null +++ b/sys/arm/include/ptrace.h @@ -0,0 +1,21 @@ +/* $NetBSD: ptrace.h,v 1.2 2001/02/23 21:23:52 reinoud Exp $ */ + +#ifndef _MACHINE_PTRACE_H_ +#define _MACHINE_PTRACE_H_ + +#define __HAVE_PTRACE_MACHDEP + +/* + * Must match mcontext_vfp_t. Note that mcontext_vfp_t does not + * include explicit padding. + */ +struct vfpreg { + __uint64_t vfp_reg[32]; + __uint32_t vfp_scr; + __uint32_t vfp_pad0; +}; + +#define PT_GETVFPREGS (PT_FIRSTMACH + 0) +#define PT_SETVFPREGS (PT_FIRSTMACH + 1) + +#endif /* !_MACHINE_PTRACE_H */ |
