repo.or.cz
/
linux
/
fpc-iii.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
perf tools: Don't clone maps from parent when synthesizing forks
[linux/fpc-iii.git]
/
arch
/
x86
/
um
/
shared
/
sysdep
/
archsetjmp_64.h
blob
9b499e457ba0f182ebf63f8faba43ef7f107c191
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*
3
* arch/um/include/sysdep-x86_64/archsetjmp.h
4
*/
5
6
#ifndef _KLIBC_ARCHSETJMP_H
7
#define _KLIBC_ARCHSETJMP_H
8
9
struct
__jmp_buf
{
10
unsigned long
__rbx
;
11
unsigned long
__rsp
;
12
unsigned long
__rbp
;
13
unsigned long
__r12
;
14
unsigned long
__r13
;
15
unsigned long
__r14
;
16
unsigned long
__r15
;
17
unsigned long
__rip
;
18
};
19
20
typedef
struct
__jmp_buf
jmp_buf
[
1
];
21
22
#define JB_IP __rip
23
#define JB_SP __rsp
24
25
#endif
/* _SETJMP_H */