]> git.ipfire.org Git - thirdparty/squid.git/blob - src/DiskIO/AIO/aio_win32.h
Merge from trunk. Remove dead files and fluff changes
[thirdparty/squid.git] / src / DiskIO / AIO / aio_win32.h
1 /*
2 * $Id$
3 *
4 * AUTHOR: Guido Serassio <serassio@squid-cache.org>
5 *
6 * SQUID Web Proxy Cache http://www.squid-cache.org/
7 * ----------------------------------------------------------
8 *
9 * Squid is the result of efforts by numerous individuals from
10 * the Internet community; see the CONTRIBUTORS file for full
11 * details. Many organizations have provided support for Squid's
12 * development; see the SPONSORS file for full details. Squid is
13 * Copyrighted (C) 2001 by the Regents of the University of
14 * California; see the COPYRIGHT file for full details. Squid
15 * incorporates software developed and/or copyrighted by other
16 * sources; see the CREDITS file for full details.
17 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
31 *
32 */
33
34 #ifndef __WIN32_AIO_H__
35 #define __WIN32_AIO_H__
36
37 #if USE_DISKIO_AIO
38
39 #if _SQUID_CYGWIN_
40 #include "squid_windows.h"
41 #endif
42
43 #ifndef off64_t
44 typedef int64_t off64_t;
45 #endif
46
47 #ifdef _SQUID_MSWIN_
48
49 union sigval {
50 int sival_int; /* integer value */
51 void *sival_ptr; /* pointer value */
52 };
53
54 struct sigevent {
55 int sigev_notify; /* notification mode */
56 int sigev_signo; /* signal number */
57 union sigval sigev_value; /* signal value */
58 };
59
60 // #endif
61
62 struct aiocb64 {
63 int aio_fildes; /* file descriptor */
64 void *aio_buf; /* buffer location */
65 size_t aio_nbytes; /* length of transfer */
66 off64_t aio_offset; /* file offset */
67 int aio_reqprio; /* request priority offset */
68
69 struct sigevent aio_sigevent; /* signal number and offset */
70 int aio_lio_opcode; /* listio operation */
71 };
72
73 struct aiocb {
74 int aio_fildes; /* file descriptor */
75 void *aio_buf; /* buffer location */
76 size_t aio_nbytes; /* length of transfer */
77 #if (_FILE_OFFSET_BITS == 64)
78
79 off64_t aio_offset; /* file offset */
80 #else
81
82 off_t aio_offset; /* file offset */
83 #endif
84
85 int aio_reqprio; /* request priority offset */
86
87 struct sigevent aio_sigevent; /* signal number and offset */
88 int aio_lio_opcode; /* listio operation */
89 };
90
91 int aio_read(struct aiocb *);
92
93 int aio_write(struct aiocb *);
94
95 ssize_t aio_return(struct aiocb *);
96
97 int aio_error(const struct aiocb *);
98
99 int aio_read64(struct aiocb64 *);
100
101 int aio_write64(struct aiocb64 *);
102
103 ssize_t aio_return64(struct aiocb64 *);
104
105 int aio_error64(const struct aiocb64 *);
106 int aio_open(const char *, int);
107 void aio_close(int);
108
109 #endif /* _SQUID_MSWIN_ */
110 #endif /* USE_DISKIO_AIO */
111 #endif /* __WIN32_AIO_H__ */