summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/aio_cancel.c
diff options
context:
space:
mode:
authorAlex Ivanov <alexivanov97@gmail.com>2012-12-15 09:54:10 -0500
committerGedare Bloom <gedare@rtems.org>2012-12-15 09:54:10 -0500
commite49a36cb0b37cc3ad1c3f191fb439b17f6365539 (patch)
tree1c39de36e4c7a90413f55288ed86d076cef1afbf /cpukit/posix/src/aio_cancel.c
parentlibcsupport: Update file header for termios.h to remove link, add description. (diff)
downloadrtems-e49a36cb0b37cc3ad1c3f191fb439b17f6365539.tar.bz2
posix: Doxygen Enhancement Task #5
http://www.google-melange.com/gci/task/view/google/gci2012/7959229
Diffstat (limited to 'cpukit/posix/src/aio_cancel.c')
-rw-r--r--cpukit/posix/src/aio_cancel.c24
1 files changed, 7 insertions, 17 deletions
diff --git a/cpukit/posix/src/aio_cancel.c b/cpukit/posix/src/aio_cancel.c
index be771e7c33..561e2f8776 100644
--- a/cpukit/posix/src/aio_cancel.c
+++ b/cpukit/posix/src/aio_cancel.c
@@ -1,3 +1,10 @@
+/**
+ * @file
+ *
+ * @brief Cancel Asynchronous I/O Operation
+ * @ingroup POSIX_AIO
+ */
+
/*
* Copyright 2010, Alin Rus <alin.codejunkie@gmail.com>
*
@@ -17,23 +24,6 @@
#include <rtems/system.h>
#include <rtems/seterr.h>
-/*
- * aio_cancel
- *
- * Cancel an asynchronous I/O request
- *
- * Input parameters:
- * fildes - file descriptor
- * aiocbp - asynchronous I/O control block
- *
- * Output parameters:
- * AIO_CANCELED - if the requested operation(s)
- * were canceled
- * AIO_NOTCANCELED - if at least one of the requested
- * operation(s) cannot be canceled
- */
-
-
int aio_cancel(int fildes, struct aiocb *aiocbp)
{
rtems_aio_request_chain *r_chain;