- 论坛徽章:
- 2
|
回复 #9 babyonetwo 的帖子
经你一说, 才发现真的没有 …… 尴尬……
pthread不熟, 没有实际使用过。
取消点除了pthread_testcancel还有什么???
pthread_testcancel 可以这么实现:
typedef struct {
void* (*routine)(void*);
void* arg;
} my_thread_context;
void* my_thread_routine( void* arg ) {
my_thread_context* ctx = (my_thread_context*)arg;
try {
return ctx->routine( ctx->arg );
}
catch ( cancel_thread& ) {
// cancel成功后, thread的返回代码应该是多少???
}
}
int my_pthread_create( routine, arg , ... ) {
my_thread_context ctx = { routine, arg };
return pthread_create( my_thread_routine, &ctx, ... );
}
void my_pthread_testcancel(void) {
if ( my_thread_tss( pthread_self() )->cancel )
throw cancel_thread();
}
void my_pthread_cancel( thread_t thread ) {
my_thread_tss(thread)->cancel = 1;
}
wait的时候也是取消点??? 那就不知道怎么实现了……
cleanup_push那套可以放在throw之前。
[ 本帖最后由 OwnWaterloo 于 2009-12-22 17:45 编辑 ] |
|