POSIX 线程参数
pthread 只能接受一个参数吗?
因此,如果我想发送多个参数,我会发送一个结构体并在线程函数内打开它吗?
Can a pthread only take one argument?
So If I wanted to send in a number of arguments, would I send in a struct and open it inside the thread function?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,请参阅 pthread_create 上的文档。您始终可以按照您的建议将所需的信息捆绑在结构对象中。
Yes, see the documentation on pthread_create. You can always bundle the needed information in a struct object as you suggest.