summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/shmwkspace.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-04-16Canonicalize config.h includeSebastian Huber1-1/+1
Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
2019-04-10posix: Avoid fatal error in Shm object createSebastian Huber1-1/+5
2017-08-25Include missing <string.h>Sebastian Huber1-0/+1
Update #2133.
2017-07-24posix: fix warnings with mmap from heap/wkspaceGedare Bloom1-1/+1
Avoid void pointer arithmetic. Updates #2859.
2017-05-05posix/mman: add mmap support for shm objectsGedare Bloom1-0/+17
Update #2859.
2017-01-13posix: shared memory supportGedare Bloom1-0/+78
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.