summaryrefslogtreecommitdiffstats
path: root/cpukit (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* fdt: Use self-contained mutexSebastian Huber2018-02-081-119/+29
| | | | Update #2843.
* network: Fix integer typesSebastian Huber2018-02-072-2/+2
|
* stdio-redirector: Use self-contained mutexSebastian Huber2018-02-072-62/+31
| | | | Update #2843.
* syslog: Use self-contained recursive mutexSebastian Huber2018-02-071-24/+6
| | | | Update #2843.
* tftpfs: Use self-contained mutexSebastian Huber2018-02-071-23/+9
| | | | Update #2843.
* libdl: Fix potential overwrite of dest bufferSebastian Huber2018-02-072-2/+2
| | | | Update #2843.
* libdl: Use self-contained mutex for RAPSebastian Huber2018-02-071-76/+16
| | | | Update #2843.
* libdl: Use self-contained recursive mutexSebastian Huber2018-02-072-64/+15
| | | | Update #2843.
* ftpd: Use self-contained synchronization objectsSebastian Huber2018-02-071-52/+22
| | | | Update #2843.
* libblock: Use self-contained mutex for mediaSebastian Huber2018-02-072-69/+39
| | | | Update #2843.
* libblock: Use self-contained mutex for sparse diskSebastian Huber2018-02-072-29/+6
| | | | Update #2843.
* libblock: Use self-contained mutex for flashdiskSebastian Huber2018-02-071-74/+57
| | | | Update #2843.
* libblock: Use self-contained mutex for nvdiskSebastian Huber2018-02-071-53/+39
| | | | Update #2843.
* NFS: Fix use of self-contained objectsSebastian Huber2018-02-071-5/+4
| | | | Update #2843.
* termios: Remove obsolete configuration optionsSebastian Huber2018-02-051-2/+6
| | | | Update #2843.
* NFS: Use self-contained recursive mutexSebastian Huber2018-02-023-150/+45
| | | | Update #2843.
* pipe: Use self-contained mutexSebastian Huber2018-02-023-102/+22
| | | | Update #2843.
* RFS: Use self-contained recursive mutexSebastian Huber2018-02-023-58/+7
| | | | Update #2843.
* dosfs: Use self-contained recursive mutexSebastian Huber2018-02-029-110/+43
| | | | Update #2843.
* JFFS2: Use self-contained recursive mutexSebastian Huber2018-02-023-40/+16
| | | | Update #2843.
* network: Use self-contained recursive mutexSebastian Huber2018-02-022-107/+15
| | | | Update #2843.
* spi: Use self-contained mutexSebastian Huber2018-02-022-32/+9
| | | | Update #2843.
* i2c: Use self-contained mutexSebastian Huber2018-02-022-33/+8
| | | | Update #2843.
* termios: Use self-contained objectsSebastian Huber2018-02-025-212/+93
| | | | Update #2840.
* libblock: Use self-contained mutex and cond varSebastian Huber2018-02-023-307/+43
| | | | Update #2843.
* libblock: Use self-contained mutex for disk lockSebastian Huber2018-02-022-78/+32
| | | | Update #2843.
* Add RTEMS thread APISebastian Huber2018-02-023-3/+386
| | | | Update #2843.
* posix: Use one second based CLOCK_MONOTONICSebastian Huber2018-02-021-2/+3
| | | | | | | This simplifies the CLOCK_MONOTONIC based time services. It is potentially important for libbsd. Close #3265.
* score: Introduce new monotonic clockSebastian Huber2018-02-0218-196/+117
| | | | | | | | Rename PER_CPU_WATCHDOG_MONOTONIC to PER_CPU_WATCHDOG_TICKS. Add new PER_CPU_WATCHDOG_MONOTONIC which is based on the system uptime (measured by timecounter). Close #3264.
* score: Rename _Watchdog_Realtime_from_*()Sebastian Huber2018-02-026-9/+9
| | | | | | Rename _Watchdog_Realtime_from_*() to _Watchdog_Ticks_from_*(). Update #3264.
* score: Optimize watchdog tickleSebastian Huber2018-02-023-54/+77
| | | | | | | Avoid unnecessary lock acquire/release operations. Get realtime via timecounter only if necessary. Update #3264.
* test: Add rtems_test_busy_cpu_usage()Sebastian Huber2018-02-022-2/+32
|
* Xilinx AXI I2C driver IP race condition causes clock glitch.Chris Johns2018-02-011-1/+5
| | | | | | | Setting the PIRQ to 0 before reading the data produces a short clock pulse. Moving the write to after reading the data fixes the issue. Close #3173
* epiphany: Workaround until next Newlib snapshotSebastian Huber2018-01-312-0/+70
| | | | | | | At least with Binutils 2.30 and GCC 7.3 we need symbol definitions without the leading underscore. Fixed in Newlib 1658a57715de93d50983f34e75216101eb373993.
* epiphany: Fixes for GCC 7.3Sebastian Huber2018-01-312-13/+12
| | | | GCC 7.3 defines __USER_LABEL_PREFIX__ to nothing.
* ada: Introduce RTEMS.Size typeSebastian Huber2018-01-2912-53/+60
| | | | | | | Some time ago the Classic API object size related parameters were changed to use size_t. Reflect this in the Ada bindings. Update #3082.
* ada: Fix RTEMS.Time_tSebastian Huber2018-01-291-1/+1
| | | | Update #3111.
* Remove make preinstallChris Johns2018-01-25654-5250/+1089
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* rfs: Fix format warningSebastian Huber2018-01-231-1/+1
| | | | Update #3082.
* rfs: Fix for 64-bit targetsSebastian Huber2018-01-222-2/+2
| | | | | | | The RTEMS_BLKIO_SETBLKSIZE IO control expects an uint32_t parameter and not a size_t which is 64-bits on 64-bit targets. Update #3082.
* monitor: Fix thread priority valuesSebastian Huber2018-01-221-1/+4
|
* powerpc: Add FSL_EIS_EPRSebastian Huber2018-01-221-0/+1
| | | | Update #3085.
* tests: Change TEST BUILD to use define namesSebastian Huber2018-01-221-77/+32
|
* rtems: Fix rtems_task_mode()Sebastian Huber2018-01-191-8/+0
| | | | | | | | | | | A rtems_configuration_is_smp_enabled() inside a !defined( RTEMS_SMP) block makes no sense. Remove !defined( RTEMS_SMP ) conditions. Test tm04 works now again. Update #3000.
* testsupport/testbeginend.c: Fix redefined warningJoel Sherrill2018-01-161-1/+3
|
* Include rtems/bspIo.h for printk.Chris Johns2018-01-041-0/+2
| | | | Closes @3267.
* sparc: Remove <bsp.h> from PCI shell commandSebastian Huber2018-01-021-1/+0
| | | | | Update #3254. Update #3260.
* sparc: Remove BSP specifics from <pci/irq.h>Sebastian Huber2018-01-021-6/+16
| | | | | | Update #3254. Update #3260. Update #3269.
* sparc: Remove BSP specifics from <pci/access.h>Sebastian Huber2018-01-021-93/+0
| | | | | Update #3254. Update #3260.
* sparc: Move <libcpu/byteorder.h>Sebastian Huber2018-01-023-0/+78
| | | | | Update #3254. Update #3260.