libandroid-shmem icon indicating copy to clipboard operation
libandroid-shmem copied to clipboard

System V shared memory emulation on Android using ashmem.

Results 5 libandroid-shmem issues
Sort by recently updated
recently updated
newest added

Sometimes termux programs are launched inside proot environment, and sometimes happens they run on devices with sysvipc support enabled in kernel. It would be nice to make `libandroid-shmem` detect if...

It is possible to use libandroid-shmem inside proot/chroot distros to improve performance of programs and to improve communicating of termux programs with programs in proot/chroot. To make this possible you...

The possibility of remote interaction with shmem is implemented, i.e. the shmem socket is multifunctional and can not only send data, but also start an action and update shmem data....

Set MAP_FIXED when addr isn't NULL and don't assume that shmflg != 0 means SHM_RDONLY termux/proot-distro#495 QEMU implies use of `SHM_REMAP`: https://github.com/qemu/qemu/blob/495de0fd82d8bb2d7035f82d9869cfeb48de2f9e/linux-user/mmap.c#L1420-L1423 In Linux, `addr != 0` implies `MAP_FIXED`, while...