菜鸟教程小白 发表于 2022-12-13 02:36:11

c++ - 带 pthread 的后台线程


                                            <p><p>我正在使用 pthreads 创建一个后台线程来加载并在后台执行一些任务,但它有点滞后于应用程序,因为它的工作有时很紧张。</p>

<p>有什么方法可以设置较低的优先级或不同的调度(或两者的组合),以便主线程有更多的 CPU 时间运行?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这不是逐字回答您的问题,而是
在 <a href="https://developer.apple.com/library/mac/#documentation/General/Conceptual/ConcurrencyProgrammingGuide/ConcurrencyandApplicationDesign/ConcurrencyandApplicationDesign.html#//apple_ref/doc/uid/TP40008091-CH100-SW1" rel="noreferrer noopener nofollow">Concurrency Programming Guide</a>
Apple 建议远离线程并使用“调度队列”或
OS X 和 iOS 上的异步操作的“操作队列”,例如</p>

<pre><code>dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_LOW, 0), ^{
    // ... background task
});
</code></pre>

<p>和 <code>DISPATCH_QUEUE_PRIORITY_LOW</code> 记录为</p>

<blockquote>
<p>Items dispatched to the queue run at low priority; the queue is
scheduled for execution after all default priority and high priority
queues have been scheduled.</p>
</blockquote></p>
                                   
                                                <p style="font-size: 20px;">关于c&#43;&#43; - 带 pthread 的后台线程,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/16654544/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/16654544/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: c&#43;&#43; - 带 pthread 的后台线程