summaryrefslogtreecommitdiffstats
path: root/cpukit (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use atexit() handler to close std file descriptorsSebastian Huber2016-02-034-12/+3
|
* Use linker set for root file system initializationSebastian Huber2016-02-034-12/+7
| | | | Update #2408.
* posix: Delete empty _POSIX_API_Initialize()Sebastian Huber2016-02-034-53/+0
|
* Optional POSIX Keys initializationSebastian Huber2016-02-037-120/+72
| | | | Update #2408.
* Optional CPU Set Handler initializationSebastian Huber2016-02-034-16/+9
| | | | Update #2408.
* Optional POSIX Spinlock initializationSebastian Huber2016-02-034-15/+12
| | | | Update #2408.
* Optional POSIX RWLock initializationSebastian Huber2016-02-034-12/+12
| | | | Update #2408.
* Optional POSIX Barrier initializationSebastian Huber2016-02-034-12/+12
| | | | Update #2408.
* Optional POSIX Timer initializationSebastian Huber2016-02-035-18/+12
| | | | Update #2408.
* Optional POSIX Semaphore initializationSebastian Huber2016-02-034-11/+12
| | | | Update #2408.
* Optional POSIX Message Queue initializationSebastian Huber2016-02-034-24/+15
| | | | Update #2408.
* Optional POSIX Mutex initializationSebastian Huber2016-02-034-12/+15
| | | | Update #2408.
* Optional POSIX Condition Variable initializationSebastian Huber2016-02-034-11/+12
| | | | Update #2408.
* Optional POSIX Cleanup initializationSebastian Huber2016-02-0310-136/+89
| | | | Update #2408.
* Optional POSIX Threads initializationSebastian Huber2016-02-035-21/+14
| | | | Update #2408.
* Optional POSIX Signals initializationSebastian Huber2016-02-034-7/+9
| | | | Update #2408.
* rtems: Delete empty _RTEMS_API_Initialize()Sebastian Huber2016-02-038-94/+1
|
* Optional Classic Barrier initializationSebastian Huber2016-02-036-52/+12
| | | | Update #2408.
* Optional Classic Rate Monotonic initializationSebastian Huber2016-02-036-50/+12
| | | | Update #2408.
* Optional Classic Dual-Ported Memory initializationSebastian Huber2016-02-036-48/+12
| | | | Update #2408.
* Optional Classic Region initializationSebastian Huber2016-02-036-54/+12
| | | | Update #2408.
* Optional Classic Partition initializationSebastian Huber2016-02-036-50/+12
| | | | Update #2408.
* Optional Classic Semaphore initializationSebastian Huber2016-02-036-56/+11
| | | | Update #2408.
* Optional Classic Message Queue initializationSebastian Huber2016-02-036-52/+12
| | | | Update #2408.
* Optional Classic Event initializationSebastian Huber2016-02-036-47/+15
| | | | Update #2408.
* Optional Classic Signal initializationSebastian Huber2016-02-036-57/+18
| | | | Update #2408.
* Optional Classic Timer initializationSebastian Huber2016-02-036-57/+15
| | | | Update #2408.
* Optional Classic Tasks initializationSebastian Huber2016-02-036-49/+12
| | | | Update #2408.
* Optional Extensions initializationSebastian Huber2016-02-036-45/+14
| | | | Update #2408.
* Optional Initial Extensions initializationSebastian Huber2016-02-035-18/+20
| | | | Update #2408.
* score: Create idle threads via linker setSebastian Huber2016-02-033-15/+19
| | | | | | This allows a more fine grained rtems_initialize_data_structures(). Update #2408.
* Statically initialize _Objects_Information_tableSebastian Huber2016-02-034-23/+14
|
* Filesystem: Export most generic path eval functionSebastian Huber2016-02-023-22/+6
| | | | | | | | Add path length parameter to rtems_filesystem_eval_path_start_with_root_and_current() so that users may pass paths without a '\0' termination. Update #2558.
* drvmgr: Install header files conditionallySebastian Huber2016-01-262-1/+4
| | | | | | | | | The --enable-drvmgr configure option controls the driver manager startup and not if the driver manager is present or not. Presence of the driver manager is determined by the architecture (only available on sparc so far). Partially revert 47190194866ba83cbfeeb5816bb18ddd9f6e8e50.
* Revert "drvmgr: Move bsp_driver_level_hook() calls"Sebastian Huber2016-01-262-7/+10
| | | | | | | | | The --enable-drvmgr configure option controls the driver manager startup and not if the driver manager is present or not. Presence of the driver manager is determined by the architecture (only available on sparc so far). This reverts commit 61bbf9194ff4bdbc1b48e6ac9919c02b358e5701.
* sparc: Adjust CPU_CACHE_LINE_BYTES for LEON3Sebastian Huber2016-01-261-2/+2
| | | | Fix for commit a8865f8b415788c4e9bb7f68e38d41aec0e485db.
* drvmgr: Move bsp_driver_level_hook() callsSebastian Huber2016-01-262-10/+7
|
* drvmgr: Remove dupl bsp_driver_level_hook() declSebastian Huber2016-01-262-4/+1
|
* mpci: Fix warningSebastian Huber2016-01-261-2/+0
| | | | Assignment is superfluous due to later call to _Thread_queue_Enqueue().
* mpci: Update due to API changesSebastian Huber2016-01-262-15/+14
| | | | | | | Update due to API changes introduced by ccd54344d904b657123e4e4ba795a32212382be2. Update #2514.
* score: Introduce CPU_CACHE_LINE_BYTESSebastian Huber2016-01-2617-254/+65
| | | | | Add CPU_CACHE_LINE_BYTES for the maximum cache line size in bytes. The actual processor may use no cache or a smaller cache line size.
* score: Add RTEMS_ALIGNED()Sebastian Huber2016-01-261-0/+9
|
* sparc64: No explicit align of _CPU_Null_fp_contextSebastian Huber2016-01-261-1/+1
| | | | This structure is not performance critical.
* sparc: No explicit align of _CPU_Null_fp_contextSebastian Huber2016-01-261-1/+1
| | | | This structure is not performance critical.
* score: Delete obsolete CPU_TIMESTAMP_* definesSebastian Huber2016-01-2517-109/+0
| | | | Update #2271.
* arm: Use DWT CYCCNT for timecounter if availableSebastian Huber2016-01-211-0/+27
|
* bsp/irq-server: Support shared interruptsSebastian Huber2016-01-201-3/+4
|
* Remove AVR portJoel Sherrill2016-01-19190-208684/+1
| | | | closes #2443.
* posix/src/exec*: Remove all variants already in NewlibJoel Sherrill2016-01-198-220/+7
| | | | | | | | The RTEMS build of Newlib includes implementations of all exec*() variants. They rely on the _execve() support method. RTEMS already had this and it returned ENOSYS. There is no functional change. closes #2537.
* score: Fix simple timecounter supportSebastian Huber2016-01-194-17/+67
| | | | Update #2502.