summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/shmheap.c (unfollow)
Commit message (Collapse)AuthorFilesLines
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/+20
Update #2859.
2017-01-13posix: shared memory supportGedare Bloom1-0/+90
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.