summaryrefslogtreecommitdiffstats
path: root/cpukit (unfollow)
Commit message (Collapse)AuthorFilesLines
2017-10-02i2c: Send MSB of address first for EEPROMsSebastian Huber1-12/+21
Update #3161.
2017-09-29libpci: fix pci device allocationDaniel Hellstrom5-37/+32
The refactoring of pci_dev_create() was incorrect since the code relied on different defines before including pci/cfg.h. This reverts back to the original code having two pci_dev_create() one in auto and one in read library. confdefs.h selectes between the two libraries so both there is no link conflict. Updates #3029
2017-09-28shell: Fix missing prototype warningSebastian Huber1-0/+1
2017-09-28network: Add missing forward declarationSebastian Huber1-0/+1
2017-09-27posix: Remove superfluous includesSebastian Huber8-57/+18
2017-09-27score: Simplify red-black tree debug supportSebastian Huber4-16/+17
Make the RBTree_Node layout independent of RTEMS_DEBUG (and all other build configuration options). This allows the use of this structure in Newlib. Update #3112.
2017-09-27posix: Remove superfluous includesSebastian Huber2-14/+8
2017-09-27score: Rename to _Scheduler_ControlSebastian Huber7-15/+15
Rename struct Scheduler_Control to _Scheduler_Control to allow its use in standard header files, e.g. <pthread.h>. Update #3112.
2017-09-22posix shm: Add oflag to Shm_ControlJoel Sherrill2-0/+2
2017-09-22score: Include missing header fileSebastian Huber1-0/+2
Update #3059.
2017-09-22posix: Allow PTHREAD_PROCESS_SHARED for rwlocksSebastian Huber1-23/+7
Close #3153.
2017-09-19score: Include missing <limits.h>Sebastian Huber1-0/+2
Update #2132. Close #3140.
2017-09-19Add "\n" to "\r\n" translation to rtems_putc()Sebastian Huber1-1/+5
Update #3122.
2017-09-15posix: Allow PTHREAD_PROCESS_SHARED for condvarSebastian Huber1-2/+5
Close #3137.
2017-09-15posix: Allow PTHREAD_PROCESS_SHARED for barriersSebastian Huber1-6/+3
Close #3126.
2017-09-15posix: Allow PTHREAD_PROCESS_SHARED for mutexesSebastian Huber2-7/+18
Close #3125.
2017-09-15libio: Remove rtems_libio_t::driverSebastian Huber1-1/+0
This member was apparently unused. Close #3133.
2017-09-15libio: Use FIFO for iop free listSebastian Huber4-13/+25
Update #3136.
2017-09-15libio: Add hold/drop iop referenceSebastian Huber19-44/+141
Check iop reference count in close() and return -1 with errno set to EBUSY in case the file descriptor is still in use. Update #3132.
2017-09-15libio: Unify readv() and writev()Sebastian Huber3-26/+50
Update #3132.
2017-09-15libio: LIBIO_GET_IOP() LIBIO_GET_IOP_WITH_ACCESS()Sebastian Huber16-83/+63
Replace rtems_libio_check_fd(), rtems_libio_iop(), rtems_libio_check_open() and rtems_libio_check_permissions() combinations with new LIBIO_GET_IOP() and LIBIO_GET_IOP_WITH_ACCESS() macros. Update #3132.
2017-09-15libio: Add rtems_libio_iop_is_append()Sebastian Huber6-7/+17
Update #3132.
2017-09-15libio: Add rtems_libio_iop_is_writeable()Sebastian Huber3-3/+13
Update #3132.
2017-09-15libio: Add rtems_libio_iop_is_readable()Sebastian Huber2-1/+11
Update #3132.
2017-09-15libio: Add rtems_libio_iop_is_no_delay()Sebastian Huber4-3/+13
Update #3132.
2017-09-15libio: Add rtems_libio_iop_flags()Sebastian Huber4-7/+12
Update #3132.
2017-09-15libio: Add rtems_libio_iop_flags_initialize()Sebastian Huber6-15/+42
Update #3132.
2017-09-15libio: Add iop set/clear flagsSebastian Huber9-15/+56
Update #3132.
2017-09-15libio: rtems_libio_check_permissions_with_error()Sebastian Huber5-7/+7
Rename rtems_libio_check_permissions_with_error() in rtems_libio_check_permissions(). Update #3132.
2017-09-15libio: Remove rtems_libio_check_permissions()Sebastian Huber2-11/+1
Remove rtems_libio_check_permissions() and convert single user to rtems_libio_check_permissions_with_error(). Update #3132.
2017-09-15libio: Do simple parameter checks earlySebastian Huber3-12/+14
This simplifies error handling later. Update #3132.
2017-09-14libio: Avoid direct use of rtems_libio_iopsSebastian Huber3-3/+3
Update #3132.
2017-09-14libio: Simplify rtems_libio_iop()Sebastian Huber2-8/+14
Remove the file descriptor validation. This is the job of rtems_libio_check_fd(). Use an inline function instread of a macro. Update #3132.
2017-09-14libio: Remove LIBIO_FLAGS_CREATESebastian Huber3-8/+0
Close #3134.
2017-09-14libio: Remove special-case reference countSebastian Huber6-112/+27
The top-level IO library structures should contain no special-case data. Update #2859.
2017-09-12posix: Ignore pshared for semaphoresSebastian Huber5-11/+0
Since we have only one process, sharing between processes is trivial. Close #3124.
2017-09-12serdbg: Fix warningSebastian Huber1-1/+0
Update #3122.
2017-09-12Simplify and unify BSP_output_charSebastian Huber3-7/+9
The BSP_output_char should output a char and not mingle with high level processing, e.g. '\n' to '\r\n' translation. Move this translation to rtems_putc(). Remove it from all the BSP_output_char implementations. Close #3122.
2017-09-12posix: Use mutex object itself for condvarSebastian Huber3-6/+6
We should only use the address used to initialize the mutex object according to POSIX, "2.9.9 Synchronization Object Copies and Alternative Mappings". http://pubs.opengroup.org/onlinepubs/9699919799/functions/V2_chap02.html#tag_15_09_09 Update #3113.
2017-09-11i2c: TMP112 correct the function name to set the config.Chris Johns1-1/+1
2017-09-07Implement clock()Sebastian Huber2-0/+34
Newlib uses _times_r() in clock(). The problem is that the _times_r() clock frequency is defined by sysconf(_SC_CLK_TCK). The clock frequency of clock() is the constant CLOCKS_PER_SEC. FreeBSD uses getrusage() for clock(). Since RTEMS has only one process, the implementation can be simplified. Update #3121.
2017-09-06dosfs: Fix fat_file_update()Sebastian Huber1-5/+3
Do not update the non-existant meta-data of the root directory. Update #2944.
2017-09-06dosfs: Fix find name next entry preparationSebastian Huber1-25/+50
Update #2964.
2017-09-06dosfs: Fix msdos_dir_read()Sebastian Huber1-27/+28
Set a proper name buffer length for each converter invocation. Update #2987.
2017-09-06dosfs: Support a cluster size of 64KiBSebastian Huber3-12/+10
Close #3003.
2017-09-06Fix integer overflow problems in times()Sebastian Huber1-34/+16
An integer overflow may still happen, however, only after 68 years of system uptime. Close #2135.
2017-08-29drvmgr: clean up info_drv printDaniel Hellstrom1-13/+4
Fixes #2930
2017-08-25score: Remove <string.h> include from basedefs.hSebastian Huber1-7/+0
Close #2133.
2017-08-25score: Remove <limits.h> include from basedefs.hSebastian Huber1-7/+0
Close #2132.
2017-08-25network: Include missing header fileSebastian Huber1-0/+1