| * Copyright 2003 PathScale, Inc. |
| void sc_to_sc(void *to_ptr, void *from_ptr) |
| struct sigcontext *to = to_ptr, *from = from_ptr; |
| int size = sizeof(*to); /* + sizeof(struct _fpstate); */ |
| if(from->fpstate != NULL) |
| to->fpstate = (struct _fpstate *) (to + 1); |
| unsigned long *sc_sigmask(void *sc_ptr) |
| struct sigcontext *sc = sc_ptr; |
| /* Overrides for Emacs so that we follow Linus's tabbing style. |
| * Emacs will notice this stuff at the end of the file and automatically |
| * adjust the settings for this buffer only. This must remain at the end |
| * --------------------------------------------------------------------------- |