summaryrefslogtreecommitdiffstats
path: root/cpukit (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-05-05posix: Add mmap/unmap support for mapping files.Chris Johns5-36/+319
This version of mmap comes from early work done on the RTL code base circa 2012. Update #2859.
2017-05-05posix/shm: replace threadq with mutex (allocator lock)Gedare Bloom2-28/+5
Closes #2957.
2017-05-05posix/mman: update atime on shared memory read callGedare Bloom2-0/+10
Update #2859.
2017-05-04cpukit: Fix __RTEMS_REVISION__ defineSebastian Huber1-1/+1
2017-05-02leon, l4stat: Initial driver commitJavier Jalle1-0/+4
2017-05-02leon, memscrub: add GR740 memory scrubber driverJavier Jalle1-0/+4
2017-05-02leon, griommu: add GR740 IOMMU driverJavier Jalle1-0/+4
The driver is limited to the access protection bit-vector. It currently does not support the IOMMU page-table functionality.
2017-05-02leon, l2cache: add GR740 L2-Cache driverJavier Jalle1-0/+4
2017-05-02drvmgr: ability to configure IRQ affinityDaniel Hellstrom2-0/+33
2017-05-02leon, GR-CPCI-GR740: Added peripheral PCI driverJavier Jalle3-0/+6
2017-05-02shell: Fix format specifiersSebastian Huber1-3/+3
2017-04-28rtems/inttypes.h: Add PRIdrtems_vector_number. Missed in previous commitJoel Sherrill1-0/+3
2017-04-27posix/src/mutexinit.c: Reorder to make priority a scoped variableJoel Sherrill1-28/+24
2017-04-26posix/src/mutexinit.c: Reorder to make priority a scoped variableJoel Sherrill1-22/+19
2017-04-25rtems/inttypes.h, block08: Add and use PRIdrtems_blkdev_bnumJoel Sherrill1-2/+5
2017-04-25score/cpu/or1k/rtems/score/cpu.h: Fix printf() format warningJoel Sherrill1-1/+3
2017-04-25score/cpu/or1k/or1k-exception-frame-print.c: Fix printf() format warningJoel Sherrill1-2/+4
2017-04-25libdl/rtl-obj-cache.c: Fix printf() format warningJoel Sherrill1-2/+3
2017-04-25posix/src/mutexinit.c: Fix used before initialized warningJoel Sherrill1-0/+3
2017-04-25moxie/rtems/score/cpu.h: Fix printf() format warningJoel Sherrill1-1/+1
2017-04-25epiphany/rtems/score/cpu.h: Fix printf() format warningJoel Sherrill1-1/+3
2017-04-25rtems/inttypes.h epiphany_sim/irq/irq.c: Add PRIdrtems_vector_number and use itJoel Sherrill1-0/+3
2017-04-25epiphany/cpu.c: Fix typo to eliminate warningJoel Sherrill1-2/+2
2017-04-24xz/xz_config.h: Address unable to inline warningJoel Sherrill1-0/+5
2017-04-24libdl/rtl-obj-cache.c: Use PRIdoff_t to avoid printf() format warnings on ↵Joel Sherrill1-2/+3
some architectures
2017-04-24ratemonreportstatistics.c: Fix printf() warnings so clean on 32 and 64 bit ↵Joel Sherrill1-7/+8
architectures
2017-04-24epiphany/cpu.c: Fix not a prototype warningJoel Sherrill1-2/+2
2017-04-23rtems/inttypes.h: Add PRIdioctl_command_tJoel Sherrill1-3/+7
2017-04-22rtems/inttypes.h: Add blksize_t and blkcnt_tJoel Sherrill2-0/+36
2017-04-19libdebugger: Fix the mode on task create. Clean up warnings.Chris Johns1-14/+21
Closes #2976.
2017-04-19libmisc/monitor: Correctly print unlimited configuration table entries.Chris Johns1-12/+22
Closes #2997.
2017-04-18Merge tmacros.h PRIxxx constants from testsuites/ into <rtems/inttypes.h>Joel Sherrill2-20/+76
This completes the initial creation of rtems/inttypes.h based on all existing PRIxxx definitions contained in RTEMS Project owned code. closes #2983.
2017-04-18rtems/inttypes.h: New file. Uses contents from cpukitJoel Sherrill9-59/+90
Provide extentions to <inttpes.h> PRIxxx constants for more POSIX types. Start with existing definitions found in RTEMS Project owned code in cpukit/. updates #2983.
2017-04-15libdebugger: Work around assert when using _Thread_Executing.Chris Johns2-2/+8
Using _Thread_Executing with RTEMS_DEBUG results in an `assert` if the server accesses invalid memory. Updates #2993.
2017-04-14cpukit/../i386/cpu.c: Use inttypes.h to fix 1 warning.Cillian O'Donnell1-1/+2
2017-04-10Updating default termios initialization for dedicated input/output baud ratesKevin Kirspel1-1/+4
updates #2897.
2017-04-07libdl/rtl-obj-cache.c: Using inttypes macros fixes 4 format warningsCillian O'Donnell1-9/+12
2017-04-06xz_config.h: Define XZ_USE_CRC64Joel Sherrill1-1/+1
close #2909.
2017-04-05SMP: Simplify SMP multicast actionsSebastian Huber4-63/+85
2017-04-04sys/event.h: Update to FreeBSD head 2017-02-13Sebastian Huber1-7/+9
2017-04-03bsps: Fix baud settingsSebastian Huber2-5/+3
Update #2897.
2017-04-03configure: Remove defunct configure stuffSebastian Huber1-2/+0
2017-03-31libdl: Support link ordered loading of ELF sections.Chris Johns5-36/+166
The ARM C++ exception ABI uses an address ordered index table to locate the correct frame data and this requires the EXIDX sections are loaded in the order the order the matching text is loaded. The EXIDX sections set the SHF_LINK_ORDER flag and link field. This patch adds support to load those flagged sections in the linked-to section order. Updates #2955. Closes #2959
2017-03-28arm: Optimize context switchSebastian Huber3-78/+55
Set CPU_ENABLE_ROBUST_THREAD_DISPATCH to TRUE. In this case the interrupts are always enabled during a context switch even after interrupt processing (see #2751). Remove the CPSR from the context control since it contains only volatile bits. Close #2954.
2017-03-28posix: Fix pthread_detach() internal lock acquireSebastian Huber1-1/+1
2017-03-28rtems: Fix error return pathSebastian Huber1-0/+1
2017-03-27cpukit: Fix Makefile.am and update preinstall.amSebastian Huber2-18/+20
Update #2897.
2017-03-27termios: Avoid invalid memory accessSebastian Huber1-1/+3
Update #2897.
2017-03-22termios: Synchronize with latest FreeBSD headersKevin Kirspel26-293/+658
Adding modified FreeBSD headers to synchronize RTEMS termios with FreeBSD. Modify termios to support dedicated input and output baud for termios structure. Updated BSPs to use dedicated input and output baud in termios structure. Updated tools to use dedicated input and output baud in termios structure. Updated termios testsuites to use dedicated input and output baud in termios structure. Close #2897.
2017-03-16dosfs: Fix file name searchSebastian Huber1-17/+7
Do not use our long file name entry count to optimize the file name search. The Unicode comparison must be taken into account. Update #2939.