Show
Ignore:
Timestamp:
09/03/05 13:42:25 (8 years ago)
Author:
ahu
Message:

fix for mtasker on solaris

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pdns/pdns/mtasker.cc

    r465 r471  
    238238  uc->uc_stack.ss_size = d_stacksize; 
    239239#ifdef SOLARIS 
    240   makecontext (uc, (void (*)(...))threadWrapper, 4, this, start, d_maxtid, val); 
     240  uc->uc_stack.ss_sp = (void*)(((char*)uc->uc_stack.ss_sp)+d_stacksize); 
     241  makecontext (uc,(void (*)(...))threadWrapper, 5, this, start, d_maxtid, val); 
    241242#else 
    242243  makecontext (uc, (void (*)(void))threadWrapper, 4, this, start, d_maxtid, val);