summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/writev.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-09-13 15:19:14 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-09-15 10:27:13 +0200
commit98041b685e9cbe4916d8684372389e899698da16 (patch)
tree4ad2fbeb8eb626b0e71c6b810398740f62ec3fe5 /cpukit/libcsupport/src/writev.c
parentlibio: LIBIO_GET_IOP() LIBIO_GET_IOP_WITH_ACCESS() (diff)
downloadrtems-98041b685e9cbe4916d8684372389e899698da16.tar.bz2
libio: Unify readv() and writev()
Update #3132.
Diffstat (limited to 'cpukit/libcsupport/src/writev.c')
-rw-r--r--cpukit/libcsupport/src/writev.c27
1 files changed, 17 insertions, 10 deletions
diff --git a/cpukit/libcsupport/src/writev.c b/cpukit/libcsupport/src/writev.c
index c5663293d2..ad3d8dcd75 100644
--- a/cpukit/libcsupport/src/writev.c
+++ b/cpukit/libcsupport/src/writev.c
@@ -21,20 +21,27 @@
#include <rtems/libio_.h>
+static ssize_t writev_adapter(
+ rtems_libio_t *iop,
+ const struct iovec *iov,
+ int iovcnt,
+ ssize_t total
+)
+{
+ return ( *iop->pathinfo.handlers->writev_h )( iop, iov, iovcnt, total );
+}
+
ssize_t writev(
int fd,
const struct iovec *iov,
int iovcnt
)
{
- ssize_t total;
- rtems_libio_t *iop;
-
- total = rtems_libio_iovec_eval( fd, iov, iovcnt, LIBIO_FLAGS_WRITE, &iop );
-
- if ( total > 0 ) {
- total = ( *iop->pathinfo.handlers->writev_h )( iop, iov, iovcnt, total );
- }
-
- return total;
+ return rtems_libio_iovec_eval(
+ fd,
+ iov,
+ iovcnt,
+ LIBIO_FLAGS_WRITE,
+ writev_adapter
+ );
}