ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/IO-AIO/AIO.xs
(Generate patch)

Comparing IO-AIO/AIO.xs (file contents):
Revision 1.179 by root, Fri Jan 7 21:47:15 2011 UTC vs.
Revision 1.182 by root, Thu May 19 22:57:04 2011 UTC

121#define EIO_NO_WRAPPERS 1 121#define EIO_NO_WRAPPERS 1
122 122
123#include "libeio/config.h" 123#include "libeio/config.h"
124#include "libeio/eio.h" 124#include "libeio/eio.h"
125 125
126/* Linux/others */
127#ifndef O_ASYNC
128# define O_ASYNC 0
129#endif
130#ifndef O_DIRECT
131# define O_DIRECT 0
132#endif
133#ifndef O_NOATIME
134# define O_NOATIME 0
135#endif
136
137/* POSIX */
138#ifndef O_CLOEXEC
139# define O_CLOEXEC 0
140#endif
141#ifndef O_NOFOLLOW
142# define O_NOFOLLOW 0
143#endif
144#ifndef O_NOCTTY
145# define O_NOCTTY 0
146#endif
147#ifndef O_NONBLOCK
148# define O_NONBLOCK 0
149#endif
150#ifndef O_EXEC
151# define O_EXEC 0
152#endif
153#ifndef O_SEARCH
154# define O_SEARCH 0
155#endif
156#ifndef O_DIRECTORY
157# define O_DIRECTORY 0
158#endif
159#ifndef O_DSYNC
160# define O_DSYNC 0
161#endif
162#ifndef O_RSYNC
163# define O_RSYNC 0
164#endif
165#ifndef O_SYNC
166# define O_SYNC 0
167#endif
168#ifndef O_TTY_INIT
169# define O_TTY_INIT 0
170#endif
171
126#ifndef POSIX_FADV_NORMAL 172#ifndef POSIX_FADV_NORMAL
127# define POSIX_FADV_NORMAL 0 173# define POSIX_FADV_NORMAL 0
128#endif 174#endif
129#ifndef POSIX_FADV_SEQUENTIAL 175#ifndef POSIX_FADV_SEQUENTIAL
130# define POSIX_FADV_SEQUENTIAL 0 176# define POSIX_FADV_SEQUENTIAL 0
206#ifndef ST_NODIRATIME 252#ifndef ST_NODIRATIME
207# define ST_NODIRATIME 0 253# define ST_NODIRATIME 0
208#endif 254#endif
209#ifndef ST_RELATIME 255#ifndef ST_RELATIME
210# define ST_RELATIME 0 256# define ST_RELATIME 0
257#endif
258
259#ifndef S_IFIFO
260# define S_IFIFO 0
261#endif
262#ifndef S_IFCHR
263# define S_IFCHR 0
264#endif
265#ifndef S_IFBLK
266# define S_IFBLK 0
267#endif
268#ifndef S_IFLNK
269# define S_IFLNK 0
270#endif
271#ifndef S_IFREG
272# define S_IFREG 0
273#endif
274#ifndef S_IFDIR
275# define S_IFDIR 0
276#endif
277#ifndef S_IFWHT
278# define S_IFWHT 0
279#endif
280#ifndef S_IFSOCK
281# define S_IFSOCK 0
211#endif 282#endif
212 283
213#ifndef MAP_ANONYMOUS 284#ifndef MAP_ANONYMOUS
214# ifdef MAP_ANON 285# ifdef MAP_ANON
215# define MAP_ANONYMOUS MAP_ANON 286# define MAP_ANONYMOUS MAP_ANON
229#ifndef MAP_POPULATE 300#ifndef MAP_POPULATE
230# define MAP_POPULATE 0 301# define MAP_POPULATE 0
231#endif 302#endif
232#ifndef MAP_NONBLOCK 303#ifndef MAP_NONBLOCK
233# define MAP_NONBLOCK 0 304# define MAP_NONBLOCK 0
305#endif
306
307#ifndef makedev
308# define makedev(maj,min) (((maj) << 8) | (min))
309#endif
310#ifndef major
311# define major(dev) ((dev) >> 8)
312#endif
313#ifndef minor
314# define minor(dev) ((dev) & 0xff)
234#endif 315#endif
235 316
236#ifndef PAGESIZE 317#ifndef PAGESIZE
237# define PAGESIZE sysconf (_SC_PAGESIZE) 318# define PAGESIZE sysconf (_SC_PAGESIZE)
238#endif 319#endif
729 const_iv (O_RDWR) 810 const_iv (O_RDWR)
730 const_iv (O_CREAT) 811 const_iv (O_CREAT)
731 const_iv (O_TRUNC) 812 const_iv (O_TRUNC)
732 const_iv (O_EXCL) 813 const_iv (O_EXCL)
733 const_iv (O_APPEND) 814 const_iv (O_APPEND)
734#ifndef _WIN32 815
816 const_iv (O_ASYNC)
817 const_iv (O_DIRECT)
818 const_iv (O_NOATIME)
819
820 const_iv (O_CLOEXEC)
821 const_iv (O_NOCTTY)
822 const_iv (O_NOFOLLOW)
823 const_iv (O_NONBLOCK)
824 const_iv (O_EXEC)
825 const_iv (O_SEARCH)
826 const_iv (O_DIRECTORY)
827 const_iv (O_DSYNC)
828 const_iv (O_RSYNC)
829 const_iv (O_SYNC)
830 const_iv (O_TTY_INIT)
831
735 const_iv (S_IFIFO) 832 const_iv (S_IFIFO)
736#endif 833 const_iv (S_IFCHR)
834 const_iv (S_IFBLK)
835 const_iv (S_IFLNK)
836 const_iv (S_IFREG)
837 const_iv (S_IFDIR)
838 const_iv (S_IFWHT)
839 const_iv (S_IFSOCK)
840 const_iv (S_IFMT)
841
737 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL) 842 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL)
738 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL) 843 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL)
739 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM) 844 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM)
740 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE) 845 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE)
741 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED) 846 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED)
823 /* atfork child called in fifo order, so before eio's handler */ 928 /* atfork child called in fifo order, so before eio's handler */
824 X_THREAD_ATFORK (0, 0, atfork_child); 929 X_THREAD_ATFORK (0, 0, atfork_child);
825} 930}
826 931
827void 932void
828max_poll_reqs (int nreqs) 933max_poll_reqs (unsigned int nreqs)
829 PROTOTYPE: $ 934 PROTOTYPE: $
830 CODE: 935 CODE:
831 eio_set_max_poll_reqs (nreqs); 936 eio_set_max_poll_reqs (nreqs);
832 937
833void 938void
835 PROTOTYPE: $ 940 PROTOTYPE: $
836 CODE: 941 CODE:
837 eio_set_max_poll_time (nseconds); 942 eio_set_max_poll_time (nseconds);
838 943
839void 944void
840min_parallel (int nthreads) 945min_parallel (unsigned int nthreads)
841 PROTOTYPE: $ 946 PROTOTYPE: $
842 CODE: 947 CODE:
843 eio_set_min_parallel (nthreads); 948 eio_set_min_parallel (nthreads);
844 949
845void 950void
846max_parallel (int nthreads) 951max_parallel (unsigned int nthreads)
847 PROTOTYPE: $ 952 PROTOTYPE: $
848 CODE: 953 CODE:
849 eio_set_max_parallel (nthreads); 954 eio_set_max_parallel (nthreads);
850 955
851void 956void
852max_idle (int nthreads) 957max_idle (unsigned int nthreads)
853 PROTOTYPE: $ 958 PROTOTYPE: $
854 CODE: 959 CODE:
855 eio_set_max_idle (nthreads); 960 eio_set_max_idle (nthreads);
856 961
857void 962void
963idle_timeout (unsigned int seconds)
964 PROTOTYPE: $
965 CODE:
966 eio_set_idle_timeout (seconds);
967
968void
858max_outstanding (int maxreqs) 969max_outstanding (unsigned int maxreqs)
859 PROTOTYPE: $ 970 PROTOTYPE: $
860 CODE: 971 CODE:
861 max_outstanding = maxreqs; 972 max_outstanding = maxreqs;
862 973
863void 974void
1063 } 1174 }
1064 1175
1065 REQ_SEND; 1176 REQ_SEND;
1066} 1177}
1067 1178
1179UV
1180major (UV dev)
1181 ALIAS:
1182 minor = 1
1183 CODE:
1184 RETVAL = ix ? major (dev) : minor (dev);
1185 OUTPUT:
1186 RETVAL
1187
1188UV
1189makedev (UV maj, UV min)
1190 CODE:
1191 RETVAL = makedev (maj, min);
1192 OUTPUT:
1193 RETVAL
1194
1068void 1195void
1069aio_utime (SV8 *fh_or_path, SV *atime, SV *mtime, SV *callback=&PL_sv_undef) 1196aio_utime (SV8 *fh_or_path, SV *atime, SV *mtime, SV *callback=&PL_sv_undef)
1070 PPCODE: 1197 PPCODE:
1071{ 1198{
1072 dREQ; 1199 dREQ;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines