summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/aio_error.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/aio_error.c')
-rw-r--r--cpukit/posix/src/aio_error.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/cpukit/posix/src/aio_error.c b/cpukit/posix/src/aio_error.c
new file mode 100644
index 0000000000..1c0e582bc9
--- /dev/null
+++ b/cpukit/posix/src/aio_error.c
@@ -0,0 +1,38 @@
+/*
+ * 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.com/license/LICENSE.
+ *
+ * $Id$
+ */
+
+#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;
+}