summaryrefslogtreecommitdiff
path: root/cpukit/posix/src/psxsemaphore.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-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.
2018-10-04Rename files to make them unique within cpukitSebastian Huber
This allows to build librtemscpu.a in one rush in the future.