#include <stdio.h>
#include <stdlib.h>
#define _XOPEN_SOURCE 600
#include <ucontext.h>
/* Tests creation.
Should print "Hello World!" */
typedef struct thread_t{
ucontext_t thread_context;
}thread_t;
void *thr1(void *in) {
printf("Hello World!\n");
fflush(stdout);
return NULL;
}
void *thr2(void *in) {
printf("goodbye World!\n");
fflush(stdout);
return NULL;
}
int main() {
thread_t t1;
thread_t t2;
thread_create( &t1, thr1, NULL);
// if you comment out the following line, the program will run like a charm.
thread_create( &t2, thr2, NULL);
setcontext(&t1.thread_context);
return EXIT_SUCCESS;
}
void thread_routine(void *(*start_routine)(void *), void *arg)
{
start_routine(arg);
printf("gtthread routine finished\n");
}
int thread_create(thread_t *thread,
void *(*start_routine)(void *),
void *arg){
if (getcontext(&(thread->thread_context)) == -1)
{
perror("getcontext");
}
thread->thread_context.uc_stack.ss_sp = (char*) malloc(SIGSTKSZ);
thread->thread_context.uc_stack.ss_size = SIGSTKSZ;
thread->thread_context.uc_link = NULL;
makecontext(&(thread->thread_context), thread_routine, 2, (void *)start_routine, arg);
}
我使用 gcc 在 OS X 10.10 中运行我的代码。我正在尝试实现一个用户上下文库。
如果我注释掉thread_create( &t2, thr2, NULL);
,代码将产生预期的效果。我不知道为什么与 相关的行t2
会导致t1
.
作者笔记
切换到 Ubuntu 后,我很高兴地致力于实现用户上下文库。一切正常。不再有分段错误。正如预期的那样,它在 OS X 10.10 上崩溃了。
我的猜测是,由于编译器警告说,自 10.6 起,OS X 上不推荐使用 makecontext()、swapcontext() 等,所以我不应该期望它会起作用。