Lines 448-454
Link Here
|
448 |
{ |
448 |
{ |
449 |
/* make sure the stack is 8 byte aligned */ |
449 |
/* make sure the stack is 8 byte aligned */ |
450 |
static double estack_buf[32*SIGSTKSZ]; |
450 |
static double estack_buf[32*SIGSTKSZ]; |
451 |
static struct sigaltstack estack; |
451 |
static stack_t estack; |
452 |
|
452 |
|
453 |
bzero(estack_buf,sizeof(estack_buf)); |
453 |
bzero(estack_buf,sizeof(estack_buf)); |
454 |
estack.ss_sp = estack_buf; |
454 |
estack.ss_sp = estack_buf; |