Warning: This file is not a C or C++ file. It does not have highlighting.
| 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
|---|---|
| 2 | #ifndef __X86_UM_SYSDEP_ARCHSETJMP_H |
| 3 | #define __X86_UM_SYSDEP_ARCHSETJMP_H |
| 4 | |
| 5 | #ifdef __i386__ |
| 6 | #include "archsetjmp_32.h" |
| 7 | #else |
| 8 | #include "archsetjmp_64.h" |
| 9 | #endif |
| 10 | |
| 11 | unsigned long get_thread_reg(int reg, jmp_buf *buf); |
| 12 | |
| 13 | #endif /* __X86_UM_SYSDEP_ARCHSETJMP_H */ |
| 14 |
Warning: This file is not a C or C++ file. It does not have highlighting.
