如何让所有线程休眠 - iPhone
->我正在制作一个 iPhone 应用程序 ->我有一个场景,我在后台运行多个线程。
->现在假设在主线程上我收到一个事件并且必须在新的后台线程中执行一些操作。
->但是,当我当时在新的后台线程上执行某些操作时,我的所有其他线程应该暂停/睡眠,直到操作完成。
->一旦操作结束,所有其他线程都应该恢复其操作。
我将对此进行更多探索,但如果有人有想法,请提供一些意见。
谢谢
-> I am making an iphone application
-> I have a scenario where I am running number of threads in background.
-> Now suppose on main thread I receive an event and have to execute some action in a new background thread.
->But when I perform some action on the new background thread at that time my all other threads should pause/sleep till the action is completed.
-> Once the action is over all other threads should resume their operation.
I will be exploring more on this, but if any one has idea please provide some input.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通常可以使用 pthread 条件来完成信号发送,使用互斥体进行同步,如下所示:
创建互斥体和条件变量:
线程 1:等待信号:
线程 2:向等待条件的线程发出信号:
Usually signalling can be done using pthread conditions,using mutex for synchronizing, Like so:
Create Mutex and Condition Variables:
Thread 1: Wait for the Signal:
Thread 2 : Signal the thread waiting for condition: