xref: /linux/arch/um/include/shared/registers.h (revision 9c9ce355b1013a7ef37c06007cb8d714eaf4c303)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (C) 2004 PathScale, Inc
4  */
5 
6 #ifndef __REGISTERS_H
7 #define __REGISTERS_H
8 
9 #include <sysdep/ptrace.h>
10 
11 extern int init_pid_registers(int pid);
12 extern void get_safe_registers(unsigned long *regs, unsigned long *fp_regs);
13 extern int get_fp_registers(int pid, unsigned long *regs);
14 extern int put_fp_registers(int pid, unsigned long *regs);
15 
16 #endif
17