Android - 改变本机线程的优先级?

发布于 2024-12-20 03:27:25 字数 149 浏览 0 评论 0原文

我想知道是否可以在本机代码中更改线程的优先级,以及它在 Android 中是否有任何影响。据我所知,更改 prio 对操作系统没有实际影响,但这是真的吗?

基本上,如果可能的话,我需要将音频播放器线程(我使用的是 Android openAL 端口)设置为最高优先级。

I was wondering if it is possible to change priority of threads in native code, and if it has any effect in Android. From what I've heard, changing prio has no actual affect in the OS, but is it true?

Basically I need to set my audio player thread (I am using a Android openAL port) to highest priority if possible.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凉月流沐 2024-12-27 03:27:25

我不知道现在是否对您有帮助,因为这个问题最初发布已经一年了。

我遇到了同样的问题,正如您在这里提到的那样,也找到了解决方案。

链接可能对您有帮助。

I dont know whether it helps you now, because its been a year when this question was originally posted.

I encountered the same problem, as you have mentioned here and also found the solution for it.

This Link might help you.

夜灵血窟げ 2024-12-27 03:27:25
#include <unistd.h>

int nice(int incr);

请参阅此处

#include <unistd.h>

int nice(int incr);

See here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文