source: rtems/cpukit/posix/src/aio.c @ 7f72217e

4.104.114.84.95
Last change on this file since 7f72217e was 7f72217e, checked in by Joel Sherrill <joel.sherrill@…>, on 05/29/96 at 21:27:26

comment clean up

  • Property mode set to 100644
File size: 1.6 KB
Line 
1/*
2 *  $Id$
3 */
4
5#include <aio.h>
6
7#include <rtems/system.h>
8
9/*PAGE
10 *
11 *  6.7.2 Asynchronous Read, P1003.1b-1993, p. 154
12 */
13
14int aio_read(
15  struct aiocb  *aiocbp
16)
17{
18  return POSIX_NOT_IMPLEMENTED();
19}
20
21/*PAGE
22 *
23 *  6.7.3 Asynchronous Write, P1003.1b-1993, p. 155
24 */
25
26int aio_write(
27  struct aiocb  *aiocbp
28)
29{
30  return POSIX_NOT_IMPLEMENTED();
31}
32
33/*PAGE
34 *
35 *  6.7.4 List Directed I/O, P1003.1b-1993, p. 158
36 */
37
38int lio_listio(
39  int                    mode,
40  struct aiocb  * const  list[],
41  int                    nent,
42  struct sigevent       *sig
43)
44{
45  return POSIX_NOT_IMPLEMENTED();
46}
47
48/*PAGE
49 *
50 *  6.7.5 Retrieve Error of Asynchronous I/O Operation, P1003.1b-1993, p. 161
51 */
52
53int aio_error(
54  const struct aiocb  *aiocbp
55)
56{
57  return POSIX_NOT_IMPLEMENTED();
58}
59
60/*PAGE
61 *
62 *  6.7.6 Retrieve Return Status of Asynchronous I/O Operation,
63 *        P1003.1b-1993, p. 162
64 */
65
66int aio_return(
67  const struct aiocb  *aiocbp
68)
69{
70  return POSIX_NOT_IMPLEMENTED();
71}
72
73/*PAGE
74 *
75 *  6.7.7 Cancel Asynchronous I/O Operation, P1003.1b-1993, p. 163
76 */
77
78int aio_cancel(
79  int            filedes,
80  struct aiocb  *aiocbp
81)
82{
83  return POSIX_NOT_IMPLEMENTED();
84}
85
86/*PAGE
87 *
88 *  6.7.7 Wait for Asynchronous I/O Request, P1003.1b-1993, p. 164
89 */
90
91int aio_suspend(
92  struct aiocb  * const   list[],
93  int                     nent,
94  const struct timespec  *timeout
95)
96{
97  return POSIX_NOT_IMPLEMENTED();
98}
99
100/*PAGE
101 *
102 *  6.7.9 Asynchronous File Synchronization, P1003.1b-1993, p. 166
103 */
104
105int aio_fsync(
106  int            op,
107  struct aiocb  *aiocbp
108)
109{
110  return POSIX_NOT_IMPLEMENTED();
111}
Note: See TracBrowser for help on using the repository browser.