summaryrefslogtreecommitdiffstats
path: root/cpukit (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-02-08fdt: Use self-contained mutexSebastian Huber1-119/+29
Update #2843.
2018-02-07network: Fix integer typesSebastian Huber2-2/+2
2018-02-07stdio-redirector: Use self-contained mutexSebastian Huber2-62/+31
Update #2843.
2018-02-07syslog: Use self-contained recursive mutexSebastian Huber1-24/+6
Update #2843.
2018-02-07tftpfs: Use self-contained mutexSebastian Huber1-23/+9
Update #2843.
2018-02-07libdl: Fix potential overwrite of dest bufferSebastian Huber2-2/+2
Update #2843.
2018-02-07libdl: Use self-contained mutex for RAPSebastian Huber1-76/+16
Update #2843.
2018-02-07libdl: Use self-contained recursive mutexSebastian Huber2-64/+15
Update #2843.
2018-02-07ftpd: Use self-contained synchronization objectsSebastian Huber1-52/+22
Update #2843.
2018-02-07libblock: Use self-contained mutex for mediaSebastian Huber2-69/+39
Update #2843.
2018-02-07libblock: Use self-contained mutex for sparse diskSebastian Huber2-29/+6
Update #2843.
2018-02-07libblock: Use self-contained mutex for flashdiskSebastian Huber1-74/+57
Update #2843.
2018-02-07libblock: Use self-contained mutex for nvdiskSebastian Huber1-53/+39
Update #2843.
2018-02-07NFS: Fix use of self-contained objectsSebastian Huber1-5/+4
Update #2843.
2018-02-05termios: Remove obsolete configuration optionsSebastian Huber1-2/+6
Update #2843.
2018-02-02NFS: Use self-contained recursive mutexSebastian Huber3-150/+45
Update #2843.
2018-02-02pipe: Use self-contained mutexSebastian Huber3-102/+22
Update #2843.
2018-02-02RFS: Use self-contained recursive mutexSebastian Huber3-58/+7
Update #2843.
2018-02-02dosfs: Use self-contained recursive mutexSebastian Huber9-110/+43
Update #2843.
2018-02-02JFFS2: Use self-contained recursive mutexSebastian Huber3-40/+16
Update #2843.
2018-02-02network: Use self-contained recursive mutexSebastian Huber2-107/+15
Update #2843.
2018-02-02spi: Use self-contained mutexSebastian Huber2-32/+9
Update #2843.
2018-02-02i2c: Use self-contained mutexSebastian Huber2-33/+8
Update #2843.
2018-02-02termios: Use self-contained objectsSebastian Huber5-212/+93
Update #2840.
2018-02-02libblock: Use self-contained mutex and cond varSebastian Huber3-307/+43
Update #2843.
2018-02-02libblock: Use self-contained mutex for disk lockSebastian Huber2-78/+32
Update #2843.
2018-02-02Add RTEMS thread APISebastian Huber3-3/+386
Update #2843.
2018-02-02posix: Use one second based CLOCK_MONOTONICSebastian Huber1-2/+3
This simplifies the CLOCK_MONOTONIC based time services. It is potentially important for libbsd. Close #3265.
2018-02-02score: Introduce new monotonic clockSebastian Huber18-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.
2018-02-02score: Rename _Watchdog_Realtime_from_*()Sebastian Huber6-9/+9
Rename _Watchdog_Realtime_from_*() to _Watchdog_Ticks_from_*(). Update #3264.
2018-02-02score: Optimize watchdog tickleSebastian Huber3-54/+77
Avoid unnecessary lock acquire/release operations. Get realtime via timecounter only if necessary. Update #3264.
2018-02-02test: Add rtems_test_busy_cpu_usage()Sebastian Huber2-2/+32
2018-02-01Xilinx AXI I2C driver IP race condition causes clock glitch.Chris Johns1-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
2018-01-31epiphany: Workaround until next Newlib snapshotSebastian Huber2-0/+70
At least with Binutils 2.30 and GCC 7.3 we need symbol definitions without the leading underscore. Fixed in Newlib 1658a57715de93d50983f34e75216101eb373993.
2018-01-31epiphany: Fixes for GCC 7.3Sebastian Huber2-13/+12
GCC 7.3 defines __USER_LABEL_PREFIX__ to nothing.
2018-01-29ada: Introduce RTEMS.Size typeSebastian Huber12-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.
2018-01-29ada: Fix RTEMS.Time_tSebastian Huber1-1/+1
Update #3111.
2018-01-25Remove make preinstallChris Johns654-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.
2018-01-23rfs: Fix format warningSebastian Huber1-1/+1
Update #3082.
2018-01-22rfs: Fix for 64-bit targetsSebastian Huber2-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.
2018-01-22monitor: Fix thread priority valuesSebastian Huber1-1/+4
2018-01-22powerpc: Add FSL_EIS_EPRSebastian Huber1-0/+1
Update #3085.
2018-01-22tests: Change TEST BUILD to use define namesSebastian Huber1-77/+32
2018-01-19rtems: Fix rtems_task_mode()Sebastian Huber1-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.
2018-01-16testsupport/testbeginend.c: Fix redefined warningJoel Sherrill1-1/+3
2018-01-04Include rtems/bspIo.h for printk.Chris Johns1-0/+2
Closes @3267.
2018-01-02sparc: Remove <bsp.h> from PCI shell commandSebastian Huber1-1/+0
Update #3254. Update #3260.
2018-01-02sparc: Remove BSP specifics from <pci/irq.h>Sebastian Huber1-6/+16
Update #3254. Update #3260. Update #3269.
2018-01-02sparc: Remove BSP specifics from <pci/access.h>Sebastian Huber1-93/+0
Update #3254. Update #3260.
2018-01-02sparc: Move <libcpu/byteorder.h>Sebastian Huber3-0/+78
Update #3254. Update #3260.