POSIX 共有メモリ
POSIX shared memory
生成(オープン)、破棄、マップ、アンマップ以外はファイルと同じAPIを使う。
shm_open 共有メモリを作成・オープンする。
shm_unlink 共有メモリを破棄する。
mmap fd で指定されたリソースを指定されたメモリにマップする。
munmap 指定されたメモリをアンマップする。
https://pubs.opengroup.org/onlinepubs/9799919799/functions/shm_open.html
https://pubs.opengroup.org/onlinepubs/9799919799/functions/shm_unlink.html
https://pubs.opengroup.org/onlinepubs/9799919799/functions/mmap.html
https://pubs.opengroup.org/onlinepubs/9799919799/functions/munmap.html
関連
System V 共有メモリ