我已成功使用 makecontext/swapcontext 移动堆栈。但是,当我尝试将它与 pthread_mutex_lock 或 pthread_mutex_unlock 一起使用时,我总是收到段错误。任何想法,为什么会这样。代码如下所示。
编辑
现在我阅读了 swapcontext 手册,
由于当前 pthread 实现的限制,makecontext 不应在链接到 pthread(3) 库(无论是否使用线程)的程序中使用。
有解决办法吗?
static const unsigned int SWAP_STACK_SIZE = 8192;
// These are globally defined variables.
// Since each thread will have its own stack, they are defined as arrays.
static ucontext_t uctx_main[8], uctx_func[8];
static char func_stack[8][SWAP_STACK_SIZE];
// tid is thread ID here, values are 0, 1, 2, 3, etc...
if (getcontext(&uctx_func[tid]) == -1)
handle_error("getcontext");
uctx_func[tid].uc_stack.ss_sp = func_stack[tid];
uctx_func[tid].uc_stack.ss_size = SWAP_STACK_SIZE;
uctx_func[tid].uc_link = &uctx_main[tid];
makecontext(&uctx_func[tid], (void(*)())pthread_mutex_unlock, 1, &mutex);
if (swapcontext(&uctx_main[tid], &uctx_func[tid]) == -1)
handle_error("swapcontext");
手册页指出 makecontext
将参数作为 int
类型传递。如果您使用的是 64 位 Linux,那么指针将是 64 位,而 int
将是 32 位,奇怪的事情就会开始发生。
我是一名优秀的程序员,十分优秀!