我已经成功地使用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位,奇怪的事情将开始发生。

关于c - 为什么makecontext/swapcontext无法与pthread_mutex_lock/pthread_mutex_unlock一起使用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8167143/

10-16 10:25