Is shm_open supported in swift?
I can use shm_unlink but shm_open doesn't exist.
shm_open("/myregion", O_CREAT | O_RDWR)
If shm_open not supported in Swift is there an equivalent way to create a shared memory file descriptor for mapping?
I have managed to create shared memory in C but still not in Swift.