Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/x86/um/shared/sysdep/archsetjmp.h
26516 views
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
15