summaryrefslogtreecommitdiff
path: root/cpukit/posix/src/aio_error.c
blob: bd41415af100164539c32db4b8cc53948a67c54d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
 * @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.
 */

#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;
}