Android NDK 互斥体
我正在尝试使用 Android Native Development Kit 进行一些多线程处理,因此我需要 C++ 端的互斥锁。
通过 Android NDK 创建和使用互斥锁的正确方法是什么?
I am trying to do some multithreading using the Android Native Development Kit, so I need a mutex on the C++ side.
What's the proper way to create and use a mutex with Android NDK?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
NDK 似乎支持 pthread 互斥体。我自己没有使用过它们。
The NDK appears to have support for pthread mutexes. I've not made use of them myself.
以下是我们在 Windows 和 Android 上的操作方式(OS_LINUX 定义适用于 Android):
作为 Linderdaum Engine 的开发人员之一我建议查看我们的 SDK 中的 Mutex.h。
Here is how we go on Windows and Android (OS_LINUX define is for Android):
As one of the developers of Linderdaum Engine i recommend checking out for Mutex.h in our SDK.
这个问题得到解答已经有一段时间了,但我想指出,Android NDK 现在支持
C++11
及更高版本,因此现在可以使用std:: thread
和std::mutex
而不是pthreads
,下面是一个示例:It's been a while since this questions was answered, but I would like to point out that the Android NDK now supports
C++11
and beyond, so it is now possible to usestd::thread
andstd::mutex
instead ofpthreads
, here's an example: