Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/csky/abiv1/inc/abi/switch_context.h
26607 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
3
#ifndef __ABI_CSKY_PTRACE_H
4
#define __ABI_CSKY_PTRACE_H
5
6
struct switch_stack {
7
unsigned long r8;
8
unsigned long r9;
9
unsigned long r10;
10
unsigned long r11;
11
unsigned long r12;
12
unsigned long r13;
13
unsigned long r14;
14
unsigned long r15;
15
};
16
#endif /* __ABI_CSKY_PTRACE_H */
17
18