![]() |
posix-next API 0.1.0
Out-of-tree Zephyr POSIX module
|
POSIX Shared Memory Objects option. More...
Functions | |
| int | shm_open (const char *name, int oflag, mode_t mode) |
| Open or create a shared memory object. | |
| int | shm_unlink (const char *name) |
| Remove a shared memory object. | |
POSIX Shared Memory Objects option.
| int shm_open | ( | const char * | name, |
| int | oflag, | ||
| mode_t | mode | ||
| ) |
Open or create a shared memory object.
| name | Shared memory name (must start with '/'). |
| oflag | Open flags (O_RDONLY, O_RDWR, O_CREAT, O_EXCL, O_TRUNC). |
| mode | Permission bits applied if the object is created. |
| int shm_unlink | ( | const char * | name | ) |
Remove a shared memory object.
| name | Shared memory name. |