summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/shm.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
2018-12-14score: Static Objects_Information initializationSebastian Huber1-32/+34
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 Huber1-1/+0
Use Objects_Information::name_length to store this information. Update #3621.
2018-10-29posix: Split posix_api_configuration_tableSebastian Huber1-2/+1
Use separate configuration variables to avoid false dependencies. Update #2514.
2017-08-25Include missing <limits.h>Sebastian Huber1-0/+1
Update #2132.
2017-01-13posix: shared memory supportGedare Bloom1-0/+48
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.