summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* score: Create states implementation headerSebastian Huber2013-07-26113-267/+144
| | | | | | Move implementation specific parts of states.h and states.inl into new header file statesimpl.h. The states.h contains now only the application visible API.
* score: Create thread implementation headerSebastian Huber2013-07-26113-1220/+873
| | | | | | | | Move implementation specific parts of thread.h and thread.inl into new header file threadimpl.h. The thread.h contains now only the application visible API. Remove superfluous header file includes from various files.
* score: Create prioritybitmap implementation headerSebastian Huber2013-07-269-201/+140
| | | | | | | | Move implementation specific parts of prioritybitmap.h and prioritybitmap.inl into new header file prioritybitmapimpl.h. The prioritybitmap.h contains now only the application visible API. Move content of bitfield.h into prioritybitmapimpl.h.
* score: Create scheduler implementation headerSebastian Huber2013-07-2628-172/+78
| | | | | | Move implementation specific parts of scheduler.h and scheduler.inl into new header file schedulerimpl.h. The scheduler.h contains now only the application visible API.
* score: Create schedulerpriority impl headerSebastian Huber2013-07-2624-100/+45
| | | | | | | | | | | | | Move implementation specific parts of schedulerpriority.h and schedulerpriority.inl into new header file schedulerpriorityimpl.h. The schedulerpriority.h contains now only the application visible API. Add missing includes. Remove superfluous includes. Move declaration of _Priority_Bit_map to prioritybitmap.inl since this variable is used only here. Remove second declaration of _Priority_Major_bit_map.
* score: Create schedulersimple impl headerSebastian Huber2013-07-268-36/+27
| | | | | | Move implementation specific parts of schedulersimple.h and schedulersimple.inl into new header file schedulersimpleimpl.h. The schedulersimple.h contains now only the application visible API.
* libtests/malloc04: Fixes for RTEMS_DEBUGSebastian Huber2013-07-262-17/+17
|
* conf.t: Fix minor typos.Joel Sherrill2013-07-241-2/+2
|
* readdir_r(): Add restrict keyword per Single UNIX SpecificationSahil Patnayakunii2013-07-241-1/+5
|
* POSIX Semaphore: Add restrict keyword per Single UNIX SpecificationSahil Patnayakunii2013-07-243-8/+8
|
* POSIX AIO: Add restrict keyword per Single UNIX SpecificationSahil Patnayakunii2013-07-242-8/+9
|
* POSIX mqueue.h: Add restrict keyword per Single UNIX SpecificationSahil Patnayakunii2013-07-243-10/+10
|
* doc/user/conf.t: Fix SMP_MAXIMUM_PROCESSORS and add Go configurationCynthia Rempel2013-07-241-1/+93
|
* bsp/mpc55xx: Fix prototypePeter Dufault2013-07-241-1/+1
|
* score: Move _Heap_Area_overhead() definition.Sebastian Huber2013-07-242-31/+31
| | | | This function is used in bootcard.h.
* score: Include <rtems/score/cpu.h>Sebastian Huber2013-07-241-1/+1
| | | | This file uses CPU_ALIGNMENT.
* score: Add freechainZhongwei Yao2013-07-2410-0/+419
|
* score: Delete priority.inlSebastian Huber2013-07-244-62/+0
|
* score: Merge sysstate API into one fileSebastian Huber2013-07-24103-184/+99
|
* libtests/malloctest: Fixes for RTEMS_DEBUGSebastian Huber2013-07-242-5/+36
|
* bsp/lpc32xx: Fix memory map for GPIO registersSebastian Huber2013-07-241-0/+2
|
* score: Create stack implementation headerSebastian Huber2013-07-2313-29/+38
| | | | | | Move implementation specific parts of stack.h and stack.inl into new header file stackimpl.h. The stack.h contains now only the application visible API.
* posix: Include missing <stdint.h>Sebastian Huber2013-07-231-0/+2
|
* score: Create heap implementation headerSebastian Huber2013-07-2325-642/+643
| | | | | | Move implementation specific parts of heap.h and heap.inl into new header file heapimpl.h. The heap.h contains now only the application visible API.
* score: Include missing <rtems/score/thread.h>Sebastian Huber2013-07-231-0/+1
|
* score: PR1782: CPU_USE_DEFERRED_FP_SWITCHSebastian Huber2013-07-234-11/+14
| | | | Do not redefine CPU_USE_DEFERRED_FP_SWITCH.
* score: Include missing <rtems/score/address.h>Sebastian Huber2013-07-232-0/+2
|
* score: Merge wkspace API into one fileSebastian Huber2013-07-235-62/+17
|
* score: Merge address API into one fileSebastian Huber2013-07-234-202/+160
|
* rtems: Include missing headerSebastian Huber2013-07-231-1/+2
|
* rtems: Create tasks implementation headerSebastian Huber2013-07-2336-201/+216
| | | | | | Move implementation specific parts of tasks.h and tasks.inl into new header file tasksimpl.h. The tasks.h contains now only the application visible API.
* rtems: Create region implementation headerSebastian Huber2013-07-2323-118/+119
| | | | | | Move implementation specific parts of region.h and region.inl into new header file regionimpl.h. The region.h contains now only the application visible API.
* rtems: Include <rtems/debug.h> in <rtems.h>Sebastian Huber2013-07-231-0/+1
| | | | This header file is included indirectly via <rtems/rtems/region.h>.
* rtems: Create part implementation headerSebastian Huber2013-07-2317-69/+75
| | | | | | Move implementation specific parts of part.h and part.inl into new header file partimpl.h. The part.h contains now only the application visible API.
* rtems: Create timer implementation headerSebastian Huber2013-07-2324-267/+272
| | | | | | Move implementation specific parts of timer.h and timer.inl into new header file timerimpl.h. The timer.h contains now only the application visible API.
* rtems: Create ratemon implementation headerSebastian Huber2013-07-2322-312/+313
| | | | | | Move implementation specific parts of ratemon.h and ratemon.inl into new header file ratemonimpl.h. The ratemon.h contains now only the application visible API.
* score: Include <string.h> in basedefs.hSebastian Huber2013-07-231-0/+7
|
* Include missing <string.h>Sebastian Huber2013-07-2344-2/+50
|
* rtems: Create dpmem implementation headerSebastian Huber2013-07-2314-61/+57
| | | | | | Move implementation specific parts of dpmem.h and dpmem.inl into new header file dpmemimpl.h. The dpmem.h contains now only the application visible API.
* rtems: Create event implementation headerSebastian Huber2013-07-2323-399/+302
| | | | | | Move implementation specific parts of event.h, event.inl, eventset.h and eventset.inl into new header file eventimpl.h. The event.h contains now only the application visible API.
* rtems: Merge support API into one fileSebastian Huber2013-07-234-73/+30
|
* rtems: Create asr implementation headerSebastian Huber2013-07-238-25/+29
| | | | | | Move implementation specific parts of asr.h and asr.inl into new header file asrimpl.h. The asr.h contains now only the application visible API.
* rtems: Create modes implementation headerSebastian Huber2013-07-236-28/+35
| | | | | | Move implementation specific parts of modes.h and modes.inl into new header file modesimpl.h. The modes.h contains now only the application visible API.
* rtems: Create attr implementation headerSebastian Huber2013-07-2329-65/+74
| | | | | | Move implementation specific parts of attr.h and attr.inl into new header file attrimpl.h. The attr.h contains now only the application visible API.
* rtems: Create options implementation headerSebastian Huber2013-07-2312-27/+35
| | | | | | Move implementation specific parts of options.h and options.inl into new header file optionsimpl.h. The options.h contains now only the application visible API.
* rtems: Create status implementation headerSebastian Huber2013-07-2317-89/+95
| | | | | | Move implementation specific parts of status.h and status.inl into new header file statusimpl.h. The status.h contains now only the application visible API.
* score: Create rbtree implementation headerSebastian Huber2013-07-2313-562/+555
| | | | | | Move implementation specific parts of rbtree.h and rbtree.inl into new header file rbtreeimpl.h. The rbtree.h contains now only the application visible API.
* sapi: Create extension implementation headerSebastian Huber2013-07-2313-35/+41
| | | | | | Move implementation specific parts of extension.h and extension.inl into new header file extensionimpl.h. The extension.h contains now only the application visible API.
* sapi: Merge rbtree API into one fileSebastian Huber2013-07-235-507/+470
|
* sapi: Merge timespec API into one fileSebastian Huber2013-07-234-305/+261
|