- 论坛徽章:
- 0
|
最近用c++的cocos2d-x引擎写跨平台游戏。。其中有大量网络下载部分,既然是跨平台只能pthread库了。
于是按NSThread库的风格封装了类似的玩意
比如:
void *threadFun(void *data)
{
taget_t *tg = (taget_t*)data;
SelectorProtocol *obj = tg->obj;
SEL_CallFuncO fun = tg->mem;
(obj->*fun)((CCObject*)tg->arg);
delete tg;
return NULL;
}
void CSThread::detachNewThread(SelectorProtocol *taget, SEL_CallFuncO fun, CCObject *object)
{
taget_t *tg = new taget_t();
tg->obj = taget;
tg->mem = fun;
tg->arg = object;
pthread_t td;
pthread_attr_t at;
pthread_attr_init(&at);
pthread_attr_setdetachstate(&at, PTHREAD_CREATE_DETACHED);
pthread_create(&td, &at, threadFun, (void*)tg);
pthread_attr_destroy(&at);
}
然后我在ui线程注册SIGCHLD信号处理函数,并封装了一个perfromOnMainThread的c++方法,将传进去的obj->*fun相关数据放到自定的消息队列里。 然后朝ui线程发射pthread_kill( ui_id, SIGCHLD)来启动注册的信号处理函数。
但是在信号处理函数处理情况下还有很多SIGCHLD信号,信号处理函数只会响应一次!
根据posix.1实时扩展,内核有可能会实现信号排队机制,但我的平台几乎都没有实现。
请问还有什么好的可移植的办法让我能通知主线程么?设标识位轮询除外,平台gui原生消息循环系统除外 |
|