summaryrefslogblamecommitdiffstats
path: root/cpukit/posix/src/aio_error.c
blob: 111c811050fa4ae3a47e2b67042130b68d1cdf61 (plain) (tree)
1
2
3
4
5
6
7
8



                                                                   
                    

   
  



                                                          
                                        











                         














                                                           
 
                            
 
/**
 * @file
 *
 * @brief Returns the error status for the Asynchronous I/O request
 * @ingroup POSIXAPI
 */

/*
 * Copyright 2010, Alin Rus <alin.codejunkie@gmail.com> 
 * 
 * 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 <aio.h>
#include <errno.h>

#include <rtems/system.h>
#include <rtems/seterr.h>

/*
 *  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;
}