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


        
                    

                                                                   

   
  



                                                          
                                        

   
                    





                   

                         














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

/*
 * 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.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <aio.h>
#include <errno.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;
}