* fixed a bug in mmap of sigaltstack.
This commit is contained in:
parent
683fb50242
commit
17fd6fe97b
|
@ -307,7 +307,8 @@ SYNOPSIS
|
||||||
void
|
void
|
||||||
register_alt_stack(){
|
register_alt_stack(){
|
||||||
#ifndef __CYGWIN__
|
#ifndef __CYGWIN__
|
||||||
char* stk = mmap(0, SIGSTKSZ, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_ANON, -1, 0);
|
char* stk = mmap(0, SIGSTKSZ, PROT_READ|PROT_WRITE|PROT_EXEC,
|
||||||
|
MAP_PRIVATE|MAP_ANON, -1, 0);
|
||||||
// char* stk = ik_mmap(SIGSTKSZ);
|
// char* stk = ik_mmap(SIGSTKSZ);
|
||||||
if(stk == (char*)-1){
|
if(stk == (char*)-1){
|
||||||
fprintf(stderr, "Cannot maloc an alt stack\n");
|
fprintf(stderr, "Cannot maloc an alt stack\n");
|
||||||
|
|
Loading…
Reference in New Issue