How to use shared memory in android native code?

后端 未结 1 735
失恋的感觉
失恋的感觉 2021-01-14 08:42

I am porting an existing linux application to android. The application is using shared memory API\'s like shm_open() etc.

Checking bionic in android sou

相关标签:
1条回答
  • 2021-01-14 09:27

    Android intentionally doesn't provide SysV IPC. Try to avoid using of shared memory or, if you really want, look for examples of using ashmem.

    0 讨论(0)
提交回复
热议问题