Release 4.14 arch/x86/um/shared/sysdep/archsetjmp_32.h
/* SPDX-License-Identifier: GPL-2.0 */
/*
* arch/um/include/sysdep-i386/archsetjmp.h
*/
#ifndef _KLIBC_ARCHSETJMP_H
#define _KLIBC_ARCHSETJMP_H
struct __jmp_buf {
unsigned int __ebx;
unsigned int __esp;
unsigned int __ebp;
unsigned int __esi;
unsigned int __edi;
unsigned int __eip;
};
typedef struct __jmp_buf jmp_buf[1];
#define JB_IP __eip
#define JB_SP __esp
#endif /* _SETJMP_H */
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Jeff Dike | 54 | 96.43% | 2 | 50.00% |
Greg Kroah-Hartman | 1 | 1.79% | 1 | 25.00% |
Uwe Kleine-König | 1 | 1.79% | 1 | 25.00% |
Total | 56 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.