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.175 by root, Wed Dec 1 04:43:12 2010 UTC vs.
Revision 1.182 by root, Thu May 19 22:57:04 2011 UTC

16#include <sys/statvfs.h> 16#include <sys/statvfs.h>
17#include <limits.h> 17#include <limits.h>
18#include <fcntl.h> 18#include <fcntl.h>
19#include <sched.h> 19#include <sched.h>
20 20
21#if _POSIX_MEMLOCK || _POSIX_MAPPED_FILES 21#if _POSIX_MEMLOCK || _POSIX_MEMLOCK_RANGE || _POSIX_MAPPED_FILES
22# include <sys/mman.h> 22# include <sys/mman.h>
23#endif 23#endif
24 24
25/* perl namespace pollution */ 25/* perl namespace pollution */
26#undef VERSION 26#undef VERSION
118 STRLEN stroffset; \ 118 STRLEN stroffset; \
119 SV *self; 119 SV *self;
120 120
121#define EIO_NO_WRAPPERS 1 121#define EIO_NO_WRAPPERS 1
122 122
123#include "libeio/config.h"
123#include "libeio/eio.h" 124#include "libeio/eio.h"
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
124 171
125#ifndef POSIX_FADV_NORMAL 172#ifndef POSIX_FADV_NORMAL
126# define POSIX_FADV_NORMAL 0 173# define POSIX_FADV_NORMAL 0
127#endif 174#endif
128#ifndef POSIX_FADV_SEQUENTIAL 175#ifndef POSIX_FADV_SEQUENTIAL
205#ifndef ST_NODIRATIME 252#ifndef ST_NODIRATIME
206# define ST_NODIRATIME 0 253# define ST_NODIRATIME 0
207#endif 254#endif
208#ifndef ST_RELATIME 255#ifndef ST_RELATIME
209# 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
210#endif 282#endif
211 283
212#ifndef MAP_ANONYMOUS 284#ifndef MAP_ANONYMOUS
213# ifdef MAP_ANON 285# ifdef MAP_ANON
214# define MAP_ANONYMOUS MAP_ANON 286# define MAP_ANONYMOUS MAP_ANON
228#ifndef MAP_POPULATE 300#ifndef MAP_POPULATE
229# define MAP_POPULATE 0 301# define MAP_POPULATE 0
230#endif 302#endif
231#ifndef MAP_NONBLOCK 303#ifndef MAP_NONBLOCK
232# 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)
233#endif 315#endif
234 316
235#ifndef PAGESIZE 317#ifndef PAGESIZE
236# define PAGESIZE sysconf (_SC_PAGESIZE) 318# define PAGESIZE sysconf (_SC_PAGESIZE)
237#endif 319#endif
352 /* do not recreate the result IV from scratch each time */ 434 /* do not recreate the result IV from scratch each time */
353 if (expect_true (sv_result_cache)) 435 if (expect_true (sv_result_cache))
354 { 436 {
355 sv_result = sv_result_cache; sv_result_cache = 0; 437 sv_result = sv_result_cache; sv_result_cache = 0;
356 SvIV_set (sv_result, req->result); 438 SvIV_set (sv_result, req->result);
439 SvIOK_only (sv_result);
357 } 440 }
358 else 441 else
359 { 442 {
360 sv_result = newSViv (req->result); 443 sv_result = newSViv (req->result);
361 SvREADONLY_on (sv_result); 444 SvREADONLY_on (sv_result);
525 SvSETMAGIC (req->sv2); 608 SvSETMAGIC (req->sv2);
526 PUSHs (sv_result); 609 PUSHs (sv_result);
527 } 610 }
528 break; 611 break;
529 612
530 case EIO_DUP2: /* EIO_DUP2 actually means aio_close(), su fudge result value */ 613 case EIO_DUP2: /* EIO_DUP2 actually means aio_close(), so fudge result value */
531 if (req->result > 0) 614 if (req->result > 0)
532 SvIV_set (sv_result, 0); 615 SvIV_set (sv_result, 0);
533 /* FALLTHROUGH */ 616 /* FALLTHROUGH */
534 617
535 default: 618 default:
635/*****************************************************************************/ 718/*****************************************************************************/
636 719
637#if !_POSIX_MAPPED_FILES 720#if !_POSIX_MAPPED_FILES
638# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1) 721# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1)
639# define munmap(addr,length) (errno = ENOSYS, -1) 722# define munmap(addr,length) (errno = ENOSYS, -1)
723#endif
724
725#if !_POSIX_MEMORY_PROTECTION
640# define mprotect(addr,len,prot) (errno = ENOSYS, -1) 726# define mprotect(addr,len,prot) (errno = ENOSYS, -1)
641# define PROT_NONE 0 727# define PROT_NONE 0
642# define PROT_WRITE 0 728# define PROT_WRITE 0
643# define MAP_PRIVATE 0 729# define MAP_PRIVATE 0
644# define MAP_SHARED 0 730# define MAP_SHARED 0
724 const_iv (O_RDWR) 810 const_iv (O_RDWR)
725 const_iv (O_CREAT) 811 const_iv (O_CREAT)
726 const_iv (O_TRUNC) 812 const_iv (O_TRUNC)
727 const_iv (O_EXCL) 813 const_iv (O_EXCL)
728 const_iv (O_APPEND) 814 const_iv (O_APPEND)
729#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
730 const_iv (S_IFIFO) 832 const_iv (S_IFIFO)
731#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
732 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL) 842 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL)
733 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL) 843 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL)
734 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM) 844 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM)
735 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE) 845 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE)
736 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED) 846 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED)
818 /* atfork child called in fifo order, so before eio's handler */ 928 /* atfork child called in fifo order, so before eio's handler */
819 X_THREAD_ATFORK (0, 0, atfork_child); 929 X_THREAD_ATFORK (0, 0, atfork_child);
820} 930}
821 931
822void 932void
823max_poll_reqs (int nreqs) 933max_poll_reqs (unsigned int nreqs)
824 PROTOTYPE: $ 934 PROTOTYPE: $
825 CODE: 935 CODE:
826 eio_set_max_poll_reqs (nreqs); 936 eio_set_max_poll_reqs (nreqs);
827 937
828void 938void
830 PROTOTYPE: $ 940 PROTOTYPE: $
831 CODE: 941 CODE:
832 eio_set_max_poll_time (nseconds); 942 eio_set_max_poll_time (nseconds);
833 943
834void 944void
835min_parallel (int nthreads) 945min_parallel (unsigned int nthreads)
836 PROTOTYPE: $ 946 PROTOTYPE: $
837 CODE: 947 CODE:
838 eio_set_min_parallel (nthreads); 948 eio_set_min_parallel (nthreads);
839 949
840void 950void
841max_parallel (int nthreads) 951max_parallel (unsigned int nthreads)
842 PROTOTYPE: $ 952 PROTOTYPE: $
843 CODE: 953 CODE:
844 eio_set_max_parallel (nthreads); 954 eio_set_max_parallel (nthreads);
845 955
846void 956void
847max_idle (int nthreads) 957max_idle (unsigned int nthreads)
848 PROTOTYPE: $ 958 PROTOTYPE: $
849 CODE: 959 CODE:
850 eio_set_max_idle (nthreads); 960 eio_set_max_idle (nthreads);
851 961
852void 962void
963idle_timeout (unsigned int seconds)
964 PROTOTYPE: $
965 CODE:
966 eio_set_idle_timeout (seconds);
967
968void
853max_outstanding (int maxreqs) 969max_outstanding (unsigned int maxreqs)
854 PROTOTYPE: $ 970 PROTOTYPE: $
855 CODE: 971 CODE:
856 max_outstanding = maxreqs; 972 max_outstanding = maxreqs;
857 973
858void 974void
1058 } 1174 }
1059 1175
1060 REQ_SEND; 1176 REQ_SEND;
1061} 1177}
1062 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
1063void 1195void
1064aio_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)
1065 PPCODE: 1197 PPCODE:
1066{ 1198{
1067 dREQ; 1199 dREQ;
1522 if (!SvOK (length) || len + offset > svlen) 1654 if (!SvOK (length) || len + offset > svlen)
1523 len = svlen - offset; 1655 len = svlen - offset;
1524 1656
1525 addr = (void *)(((intptr_t)addr) + offset); 1657 addr = (void *)(((intptr_t)addr) + offset);
1526 eio_page_align (&addr, &len); 1658 eio_page_align (&addr, &len);
1527#if _POSIX_MEMLOCK 1659#if _POSIX_MEMLOCK_RANGE
1528 RETVAL = munlock (addr, len); 1660 RETVAL = munlock (addr, len);
1529#else 1661#else
1530 RETVAL = ((errno = ENOSYS), -1); 1662 RETVAL = ((errno = ENOSYS), -1);
1531#endif 1663#endif
1532} 1664}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines