How To Use Shared Memory In Android Native Code?
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 source, I see that these API's a
Solution 1:
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
.
Post a Comment for "How To Use Shared Memory In Android Native Code?"