cregit-Linux how code gets into the kernel

Release 4.10 arch/x86/um/shared/sysdep/archsetjmp_32.h

/*
 * 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

PersonTokensPropCommitsCommitProp
jeff dikejeff dike5498.18%266.67%
uwe kleine-koeniguwe kleine-koenig11.82%133.33%
Total55100.00%3100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.