summaryrefslogtreecommitdiff
path: root/PACE/pace/win32/aio.inl
diff options
context:
space:
mode:
Diffstat (limited to 'PACE/pace/win32/aio.inl')
-rw-r--r--PACE/pace/win32/aio.inl92
1 files changed, 0 insertions, 92 deletions
diff --git a/PACE/pace/win32/aio.inl b/PACE/pace/win32/aio.inl
deleted file mode 100644
index 483565a7a49..00000000000
--- a/PACE/pace/win32/aio.inl
+++ /dev/null
@@ -1,92 +0,0 @@
-/* $Id$ -*- C -*-
-
- * =============================================================================
- *
- * = LIBRARY
- * pace
- *
- * = FILENAME
- * pace/win32/aio.inl
- *
- * = AUTHOR
- * Luther Baker
- *
- * ============================================================================= */
-
-PACE_INLINE
-int
-pace_aio_cancel (int fildes, pace_aiocb * aiocbp)
-{
- return aio_cancel (fildes, aiocbp);
-}
-
-PACE_INLINE
-int
-pace_aio_error (const pace_aiocb * aiocbp)
-{
-#if PACE_HAS_POSIX == PACE_LYNXOS
- /* Cast away const since LynxOS' prototypes aren't const */
- return aio_error ((struct aiocb *) aiocbp);
-#else
- return aio_error (aiocbp);
-#endif /* ! PACE_HAS_POSIX == PACE_LYNXOS */
-}
-
-PACE_INLINE
-int
-pace_aio_fsync (int op, pace_aiocb * aiocbp)
-{
- return aio_fsync (op, aiocbp);
-}
-
-PACE_INLINE
-int
-pace_aio_read (pace_aiocb * aiocbp)
-{
- return aio_read (aiocbp);
-}
-
-PACE_INLINE
-int
-pace_aio_return (pace_aiocb * aiocbp)
-{
- return aio_return (aiocbp);
-}
-
-PACE_INLINE
-int
-pace_aio_suspend (const pace_aiocb * const list[],
- int nent,
- const pace_timespec * timeout)
-{
-#if PACE_HAS_POSIX == PACE_LYNXOS
- /* Cast away const since LynxOS' prototypes aren't const */
- return aio_suspend ((struct aiocb **) list,
- nent,
- (struct timespec *) timeout);
-#else
- return aio_suspend (list, nent, timeout);
-#endif /* ! PACE_HAS_POSIX == PACE_LYNXOS */
-}
-
-PACE_INLINE
-int
-pace_aio_write (pace_aiocb * aiocbp)
-{
- return aio_write (aiocbp);
-}
-
-PACE_INLINE
-int
-pace_lio_listio (int mode,
- pace_aiocb * const list[],
- int nent,
- pace_sigevent * sig)
-{
-#if PACE_HAS_POSIX == PACE_LYNXOS
- /* Cast away const since LynxOS' prototypes aren't const */
- return lio_listio (mode, (struct aiocb **) list, nent, sig);
-#else
- return lio_listio (mode, list, nent, sig);
-#endif /* ! PACE_HAS_POSIX == PACE_LYNXOS */
-}