summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/modes.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* rtems: Canonicalize Doxygen @file commentsSebastian Huber2020-12-021-4/+6
| | | | | | Use common phrases for the file brief descriptions. Update #3706.
* Canonicalize config.h includeSebastian Huber2020-04-161-1/+1
| | | | | | | | Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
* Remove superfluous <rtems/system.h> includesSebastian Huber2019-03-141-1/+0
|
* rtems: Remove Modes_ControlSebastian Huber2018-11-121-1/+1
| | | | | | | Use rtems_mode directly. This is in line with rtems_attribute and rtems_option. Update #3598.
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* rtems misc: Clean up Doxygen GCI Task #6Alex Ivanov2012-12-051-4/+3
| | | | http://www.google-melange.com/gci/task/view/google/gci2012/8019205
* PR 1991/cpukit - attr.c (really mode code) warning reworkJoel Sherrill2012-02-021-0/+35
This PR was about a warning for no previous prototype for rtems_interrupt_level_attribute. This method exists (like a few others) to have real bodies for Classic API services implemented as macros. These macros are not available from anything but C and C++. The most explicit use was in the Ada binding but these would be needed from assembly language or any other non-C based language. On top of needing a prototype, the methods were misnamed. They were related to modes. This renames them, moves the file, fixes test code, etc.