summaryrefslogtreecommitdiff
path: root/cpukit/posix/src/shm.c (follow)
AgeCommit message (Collapse)Author
2018-12-14score: Static Objects_Information initializationSebastian Huber
Statically allocate the objects information together with the initial set of objects either via <rtems/confdefs.h>. Provide default object informations with zero objects via librtemscpu.a. This greatly simplifies the workspace size estimate. RTEMS applications which do not use the unlimited objects option are easier to debug since all objects reside now in statically allocated objects of the right types. Close #3621.
2018-12-07score: Remove Objects_Information::is_stringSebastian Huber
Use Objects_Information::name_length to store this information. Update #3621.
2018-10-29posix: Split posix_api_configuration_tableSebastian Huber
Use separate configuration variables to avoid false dependencies. Update #2514.
2017-08-25Include missing <limits.h>Sebastian Huber
Update #2132.
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.