Welcome to The Fiwix Project
A UNIX-like kernel for the i386 architecture
1 /* 2 * fiwix/include/fiwix/sigcontext.h 3 * 4 * Copyright 2018, Jordi Sanfeliu. All rights reserved. 5 * Distributed under the terms of the Fiwix License. 6 */ 7 8 #ifndef _FIWIX_SIGCONTEXT_H 9 #define _FIWIX_SIGCONTEXT_H 10 11 struct sigcontext { 12 unsigned int gs; 13 unsigned int fs; 14 unsigned int es; 15 unsigned int ds; 16 unsigned int edi; 17 unsigned int esi; 18 unsigned int ebp; 19 unsigned int esp; 20 int ebx; 21 int edx; 22 int ecx; 23 int eax; 24 int err; 25 unsigned int eip; 26 unsigned int cs; 27 unsigned int eflags; 28 unsigned int oldesp; 29 unsigned int oldss; 30 }; 31 32 #endif /* _FIWIX_SIGCONTEXT_H */