Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.13 13 lines 294 B view raw
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 11unsigned long get_thread_reg(int reg, jmp_buf *buf); 12 13#endif /* __X86_UM_SYSDEP_ARCHSETJMP_H */