summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/include/rtems/posix/aio_misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/include/rtems/posix/aio_misc.h')
-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 db0e4d086f..c90d509d44 100644
--- a/cpukit/posix/include/rtems/posix/aio_misc.h
+++ b/cpukit/posix/include/rtems/posix/aio_misc.h
@@ -29,20 +29,20 @@ extern "C"
/* Actual request being processed */
typedef struct
{
+ rtems_chain_node next_prio; /* chain requests in order of priority */
int policy; /* If _POSIX_PRIORITIZED_IO and
_POSIX_PRIORITY_SCHEDULING are defined */
int priority; /* see above */
- rtems_chain_node next_prio; /* chain requests in order of priority */
pthread_t caller_thread; /* used for notification */
struct aiocb *aiocbp; /* aio control block */
} rtems_aio_request;
typedef struct
{
- int fildes; /* file descriptor to be processed */
- int new_fd; /* if this is a newly created chain */
rtems_chain_node next_fd; /* order fd chains in queue */
rtems_chain_control perfd; /* chain of requests for this fd */
+ int fildes; /* file descriptor to be processed */
+ int new_fd; /* if this is a newly created chain */
pthread_mutex_t mutex;
pthread_cond_t cond;