From 9012db84f611d5c394683ddcca95354928a8b505 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Wed, 13 Sep 2017 11:33:25 +0200 Subject: libio: LIBIO_GET_IOP() LIBIO_GET_IOP_WITH_ACCESS() 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. --- cpukit/libcsupport/src/read.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'cpukit/libcsupport/src/read.c') diff --git a/cpukit/libcsupport/src/read.c b/cpukit/libcsupport/src/read.c index 60c50eb875..d55ff180ae 100644 --- a/cpukit/libcsupport/src/read.c +++ b/cpukit/libcsupport/src/read.c @@ -35,10 +35,7 @@ ssize_t read( rtems_libio_check_buffer( buffer ); rtems_libio_check_count( count ); - rtems_libio_check_fd( fd ); - iop = rtems_libio_iop( fd ); - rtems_libio_check_is_open( iop ); - rtems_libio_check_permissions( iop, LIBIO_FLAGS_READ, EBADF ); + LIBIO_GET_IOP_WITH_ACCESS( fd, iop, LIBIO_FLAGS_READ, EBADF ); /* * Now process the read(). -- cgit v1.2.3