Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/um/include/shared/registers.h
38226 views
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
18