想在线程中定义变量,怎么办
想在线程中定义数组,保存线程处理的结果,这里简化为保存自己的tid,但是运行有问题,buff改成全局变量共享也不行,该怎么实现线程的私有变量啊
void thread_routine()
{
char buff[10];
memset(buff,0,10);
sprintf(buff,"%d",pthread_self());
printf("%d\n", buff);
}
int main(int argc, char const *argv[])
{
int i;
pthread_t threadidset[3];
for (i = 0; i < 3; i++)
{
pthread_create (&threadidset[i], NULL, thread_routine,
NULL);
}
for (i = 0; i < 3; i++)
pthread_join (threadidset[i], NULL);
return 0;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
线程处理结果可以直接返回呀
用
pthread_setspecific
函数设置线程私有数据。具体用法可以google找,很多的。
http://pubs.opengroup.org/onlinepubs/009695399/functions/pthread_getspecific.html
http://stackoverflow.com/questions/14260668/how-to-use-thread-specific-data-correctly
参考一下。。