summaryrefslogtreecommitdiff
path: root/cpukit/posix/src/shmunlink.c (follow)
AgeCommit message (Collapse)Author
2020-04-16Canonicalize config.h includeSebastian Huber
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2018-12-11posix: Fix shm_unlink()Sebastian Huber
This function is untested.
2017-05-05posix/mman: add mmap support for shm objectsGedare Bloom
Update #2859.
2017-01-13posix: shared memory supportGedare Bloom
Add POSIX shared memory manager (Shm). Includes a hook-based approach for the backing memory storage that defaults to the Workspace, and a test is provided using the heap. A test is also provided for the basic use of mmap'ing a shared memory object. This test currently fails at the mmap stage due to no support for mmap.
2017-01-13posix: add stub implementations for mman functionsGedare Bloom