summaryrefslogtreecommitdiffstats
path: root/cpukit/posix
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-08-20 13:32:28 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-08-20 13:32:28 +0000
commit0ca3af6b85396616d94afdb03337eddb93783327 (patch)
tree7aefb2e3651c6b303146d76a8bbe218c12273877 /cpukit/posix
parent2010-08-16 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-0ca3af6b85396616d94afdb03337eddb93783327.tar.bz2
2010-08-16 Ralf Corsépius <ralf.corsepius@rtems.org>
* posix/include/rtems/posix/aio_misc.h: Remove rtems_aio_request_s, rtems_aio_request_chain_s, rtems_aio_queue_s;
Diffstat (limited to 'cpukit/posix')
-rw-r--r--cpukit/posix/include/rtems/posix/aio_misc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/posix/include/rtems/posix/aio_misc.h b/cpukit/posix/include/rtems/posix/aio_misc.h
index 095d507a1c..d1d072aa17 100644
--- a/cpukit/posix/include/rtems/posix/aio_misc.h
+++ b/cpukit/posix/include/rtems/posix/aio_misc.h
@@ -27,7 +27,7 @@ extern "C"
#endif
/* Actual request being processed */
- typedef struct rtems_aio_request_s
+ typedef struct
{
int policy; /* If _POSIX_PRIORITIZED_IO and
_POSIX_PRIORITY_SCHEDULING are defined */
@@ -37,7 +37,7 @@ extern "C"
struct aiocb *aiocbp; /* aio control block */
} rtems_aio_request;
- typedef struct rtems_aio_request_chain_s
+ typedef struct
{
int fildes; /* file descriptor to be processed */
int new_fd; /* if this is a newly created chain */
@@ -48,7 +48,7 @@ extern "C"
} rtems_aio_request_chain;
- typedef struct rtems_aio_queue_s
+ typedef struct
{
pthread_mutex_t mutex;
pthread_cond_t new_req;