/** * @file * * @brief Returns the error status for the Asynchronous I/O request * @ingroup POSIXAPI */ /* * Copyright 2010, Alin Rus * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.org/license/LICENSE. */ #if HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include /* * aio_error * * Retrieve errors status for an asynchronous I/O operation * * Input parameters: * aiocbp - asynchronous I/O control block * * Output parameters: * aiocbp->error_code */ int aio_error (const struct aiocb *aiocbp) { return aiocbp->error_code; }