2008-03-20 13:10:43 -04:00
|
|
|
#include <i386/signal.h>
|
|
|
|
|
2007-09-20 18:09:08 -04:00
|
|
|
INLINE void *openbsd_stack_pointer(void *uap)
|
|
|
|
{
|
2008-03-20 13:10:43 -04:00
|
|
|
struct sigcontext *sc = (struct sigcontext*) uap;
|
|
|
|
return (void *)sc->sc_esp;
|
2007-09-20 18:09:08 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#define ucontext_stack_pointer openbsd_stack_pointer
|
2008-03-20 13:10:43 -04:00
|
|
|
#define UAP_PROGRAM_COUNTER(uap) (((struct sigcontext*)(uap))->sc_eip)
|