Welcome to mirror list, hosted at ThFree Co, Russian Federation.

aio.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de988ebfcb31bc72ab94c3376a03f06c2894d87c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/* libc/sys/linux/aio.c - asychronous I/O */

/* Copyright 2002, Red Hat Inc. */

/* Currently asynchronous I/O is not implemented. */

#include <sys/types.h>
#include <aio.h>
#include <errno.h>

int
aio_cancel (int fd, struct aiocb *cb)
{
  errno = ENOSYS;
  return -1;
}

int
aio_error (const struct aiocb *cb)
{
  errno = ENOSYS;
  return -1;
}

int
aio_fsync (int op, struct aiocb *cb)
{
  errno = ENOSYS;
  return -1;
}

int
aio_read (struct aiocb *cb)
{
  errno = ENOSYS;
  return -1;
}

ssize_t
aio_return (struct aiocb *cb)
{
  errno = ENOSYS;
  return -1;
}

int
aio_suspend (const struct aiocb *const list[], int nent,
             const struct timespec *timeout)
{
  errno = ENOSYS;
  return -1;
}

int
aio_write (struct aiocb *cb)
{
  errno = ENOSYS;
  return -1;
}

int
lio_listio (int mode, struct aiocb * const list[], int nent,
            struct sigevent *sig)
{
  errno = ENOSYS;
  return -1;
}

#if !defined(_ELIX_LEVEL) || _ELIX_LEVEL >= 4
void 
aio_init (const struct aioinit *INIT)
{
  errno = ENOSYS;
}
#endif