summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/rtems/types.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Update company nameSebastian Huber2023-05-201-1/+1
| | | | | The embedded brains GmbH & Co. KG is the legal successor of embedded brains GmbH.
* rtems: Conditionally include MPCI headerSebastian Huber2023-05-191-1/+1
|
* rtems: Include <rtems/score/cpuopts.h>Sebastian Huber2022-09-081-0/+1
| | | | | Directly include <rtems/score/cpuopts.h> in header files using CPU build options.
* Add items to Doxygen groupsSebastian Huber2022-09-051-0/+2
|
* rtems: Move Doxygen group definitionSebastian Huber2021-09-151-10/+0
| | | | | Move the definition of the top-level Classic API implementation group to an implementation header file.
* rtems: Move rtems_task_priority definitionSebastian Huber2021-02-241-2/+11
| | | | | | This type is not only used by Task Manager directives. This is a preparation to move the rtems_scheduler_*() directives from <rtems/rtems/tasks.h> to a new <rtems/rtems/scheduler.h>.
* Improve file header comment in generated filesSebastian Huber2021-01-251-3/+7
|
* rtems: Canonicalize implementation Doxygen groupsSebastian Huber2020-12-021-0/+10
| | | | | | | | | Rename Classic API top-level group from Classic to RTEMSImplClassic. Use RTEMSImplClassic as a prefix for the subgroups. Change the group names to be in line with the API group names. Use common phrases for the group brief descriptions. Update #3706.
* rtems: Generate <rtems/rtems/types.h>Sebastian Huber2020-11-121-115/+212
| | | | | | | | Change license to BSD-2-Clause according to file histories and documentation re-licensing agreement. Update #3899. Update #3993.
* rtems: From <rtems.h> to <rtems/rtems/types.h>Sebastian Huber2020-09-181-0/+7
| | | | | Move type related definition to <rtems/rtems/types.h>. The goal is to make <rtems.h> an include only header file.
* rtems: Remove support for RTEMS_DEPRECATED_TYPESSebastian Huber2020-07-141-23/+0
| | | | Close #3584.
* rtems: Remove rtems_thread_cpu_usage_tSebastian Huber2020-07-141-8/+0
| | | | | | This type was deprecated in RTEMS 5.1. Close #3594.
* rtems: Remove region_information_blockSebastian Huber2020-07-141-6/+0
| | | | | | This type was deprecated in RTEMS 5.1. Close #3592.
* rtems: Remove rtems_context_fpSebastian Huber2020-07-141-7/+0
| | | | | | This type was deprecated in RTEMS 5.1. Close #3590.
* rtems: Remove rtems_contextSebastian Huber2020-07-141-5/+0
| | | | | | This type was deprecated in RTEMS 5.1. Close #3588.
* config: Add _MPCI_ConfigurationSebastian Huber2019-12-131-0/+5
| | | | | | | Replace the user MPCI configuration table with a system provided _MPCI_Configuration. Update #3735.
* doxygen: Restructured cpukit/include/rtems/rtemsAndreas Dachsberger2019-04-021-2/+3
| | | | Update #3706.
* score: Introduce <rtems/score/heapinfo.h>Sebastian Huber2018-11-261-1/+1
| | | | | | | Move Heap_Information_block to separate header file to hide heap implementation details from <rtems.h>. Update #3598.
* rtems: Avoid include of <rtems/score/scheduler.h>Sebastian Huber2018-11-121-0/+1
| | | | Update #3598.
* rtems: Remove superfluous includeSebastian Huber2018-11-121-1/+0
| | | | Update #3598.
* score: Introduce <rtems/score/watchdogticks.h>Sebastian Huber2018-11-121-1/+1
| | | | | | | Separate the definitions related to watchdog ticks from the watchdog structures. Update #3598.
* rtems: Avoid <rtems/score/timecounter.h> in APISebastian Huber2018-11-121-0/+1
| | | | | | Use a real function for rtems_clock_get_uptime_seconds(). Update #3598.
* rtems: Remove Modes_ControlSebastian Huber2018-11-121-5/+0
| | | | | | | Use rtems_mode directly. This is in line with rtems_attribute and rtems_option. Update #3598.
* rtems: Move internal structures to ratemondata.hSebastian Huber2018-11-121-0/+1
| | | | Update #3598.
* rtems: Deprecate rtems_thread_cpu_usage_tSebastian Huber2018-11-091-1/+1
| | | | | | | The rtems_thread_cpu_usage_t typedef as no corresponding API. It violates the POSIX namespace. A user can do nothing with it. Close #3593.
* rtems: Deprecate region_information_blockSebastian Huber2018-11-091-1/+1
| | | | | | | The region_information_block typedef as no corresponding API. It has no proper namespace prefix. A user can do nothing with it. Close #3591.
* rtems: Deprecate rtems_context_fpSebastian Huber2018-11-091-1/+1
| | | | | | | The rtems_context_fp typedef as no corresponding API. A user can do nothing with it. Close #3589.
* rtems: Deprecate rtems_contextSebastian Huber2018-11-091-1/+1
| | | | | | | The rtems_context typedef as no corresponding API. A user can do nothing with it. Close #3587.
* score: Use RTEMS_DEPRECATED for deprecated typesSebastian Huber2018-11-081-3/+3
| | | | Update #3584.
* Remove make preinstallChris Johns2018-01-251-0/+235
A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.