summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/defaults/default_readv.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Canonicalize config.h includeSebastian Huber2020-04-161-2/+2
| | | | | | | | Use the following variant which was already used by most source files: #ifdef HAVE_CONFIG_H #include "config.h" #endif
* Change all references of rtems.com to rtems.org.Chris Johns2014-03-211-1/+1
|
* libcsupport: Accept NULL for zero-length entriesSebastian Huber2013-12-201-10/+14
|
* Filesystem: Add readv/writev handlersSebastian Huber2013-12-201-0/+60
The readv() and writev() support was implemented in terms of multiple calls to the read and write handlers. This imposes a problem on device files which use an IO vector as single request entity. For example a low-level network device (e.g. BPF(4)) may use an IO vector to create one frame from multiple protocol layers each with its own IO vector entry.