Skip to content
Snippets Groups Projects
Commit a1279580 authored by wlott's avatar wlott
Browse files

Added the y reg and fsr to our expanded sigcontext.

parent 550227f5
No related branches found
No related tags found
No related merge requests found
...@@ -18,8 +18,10 @@ struct lisp_sigcontext { ...@@ -18,8 +18,10 @@ struct lisp_sigcontext {
int sc_o0; int sc_o0;
/* And this is the part we have added. */ /* And this is the part we have added. */
unsigned int sc_regs[32]; unsigned long sc_regs[32];
unsigned int sc_fpregs[32]; unsigned long sc_fpregs[32];
long sc_y;
unsigned long sc_fsr;
}; };
#define sigcontext lisp_sigcontext #define sigcontext lisp_sigcontext
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment