[9fans] POSIX shared memory (shm_open)

2019-04-24 Thread Lassi Kortela
Hello, Can the POSIX shared memory API be emulated on Plan 9 with reasonable effort? I didn't find any mention of 'shm_open' in Plan 9 source. To recap, the API works as follows: - shm_open(path) to open or create an shm object, get a file descriptor - shm_unlink(path) to remove the shm objec

Re: [9fans] POSIX shared memory (shm_open)

2019-04-24 Thread Ori Bernstein
On Wed, 24 Apr 2019 18:22:35 +0300, Lassi Kortela wrote: > Hello, > > Can the POSIX shared memory API be emulated on Plan 9 with reasonable > effort? I didn't find any mention of 'shm_open' in Plan 9 source. It's almost certainly an intentional omission. What problem are you trying to solve w