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.161 by root, Sun Jan 10 20:28:43 2010 UTC vs.
Revision 1.205 by root, Sat Oct 1 10:53:47 2011 UTC

11#include <stddef.h> 11#include <stddef.h>
12#include <stdlib.h> 12#include <stdlib.h>
13#include <errno.h> 13#include <errno.h>
14#include <sys/types.h> 14#include <sys/types.h>
15#include <sys/stat.h> 15#include <sys/stat.h>
16#include <sys/statvfs.h>
17#include <limits.h> 16#include <limits.h>
18#include <fcntl.h> 17#include <fcntl.h>
19#include <sched.h> 18#include <sched.h>
20 19
21#if _POSIX_MEMLOCK 20#if _POSIX_MEMLOCK || _POSIX_MEMLOCK_RANGE || _POSIX_MAPPED_FILES
22# include <sys/mman.h> 21# include <sys/mman.h>
23#endif 22#endif
24 23
25/* perl namespace pollution */ 24/* perl namespace pollution */
26#undef VERSION 25#undef VERSION
27
28#ifdef _WIN32
29
30# define EIO_STRUCT_DIRENT Direntry_t
31# undef malloc
32# undef free
33
34// perl overrides all those nice win32 functions
35# undef open
36# undef read
37# undef write
38# undef send
39# undef recv
40# undef stat
41# undef fstat
42# define lstat stat
43# undef truncate
44# undef ftruncate
45# undef open
46# undef close
47# undef unlink
48# undef rmdir
49# undef rename
50# undef lseek
51
52# define chown(a,b,c) (errno = ENOSYS, -1)
53# define fchown(a,b,c) (errno = ENOSYS, -1)
54# define fchmod(a,b) (errno = ENOSYS, -1)
55# define symlink(a,b) (errno = ENOSYS, -1)
56# define readlink(a,b,c) (errno = ENOSYS, -1)
57# define mknod(a,b,c) (errno = ENOSYS, -1)
58# define truncate(a,b) (errno = ENOSYS, -1)
59# define ftruncate(fd,o) chsize ((fd), (o))
60# define fsync(fd) _commit (fd)
61# define opendir(fd) (errno = ENOSYS, 0)
62# define readdir(fd) (errno = ENOSYS, -1)
63# define closedir(fd) (errno = ENOSYS, -1)
64# define mkdir(a,b) mkdir (a)
65
66#else
67
68# include <sys/time.h>
69# include <sys/select.h>
70# include <unistd.h>
71# include <utime.h>
72# include <signal.h>
73# define EIO_STRUCT_DIRENT struct dirent
74
75#endif
76 26
77/* perl stupidly overrides readdir and maybe others */ 27/* perl stupidly overrides readdir and maybe others */
78/* with thread-unsafe versions, imagine that :( */ 28/* with thread-unsafe versions, imagine that :( */
79#undef readdir 29#undef readdir
80#undef opendir 30#undef opendir
81#undef closedir 31#undef closedir
32
33#ifdef _WIN32
34
35 // perl overrides all those nice libc functions
36
37 #undef malloc
38 #undef free
39 #undef open
40 #undef read
41 #undef write
42 #undef send
43 #undef recv
44 #undef stat
45 #undef lstat
46 #undef fstat
47 #undef truncate
48 #undef ftruncate
49 #undef open
50 #undef link
51 #undef close
52 #undef unlink
53 #undef mkdir
54 #undef rmdir
55 #undef rename
56 #undef lseek
57 #undef opendir
58 #undef readdir
59 #undef closedir
60 #undef chmod
61 #undef fchmod
62 #undef dup
63 #undef dup2
64 #undef abort
65 #undef pipe
66
67#else
68
69 #include <sys/time.h>
70 #include <sys/select.h>
71 #include <unistd.h>
72 #include <utime.h>
73 #include <signal.h>
74
75#endif
82 76
83#define EIO_STRUCT_STAT Stat_t 77#define EIO_STRUCT_STAT Stat_t
84 78
85/* use NV for 32 bit perls as it allows larger offsets */ 79/* use NV for 32 bit perls as it allows larger offsets */
86#if IVSIZE >= 8 80#if IVSIZE >= 8
108 102
109typedef SV SV8; /* byte-sv, used for argument-checking */ 103typedef SV SV8; /* byte-sv, used for argument-checking */
110typedef int aio_rfd; /* read file desriptor */ 104typedef int aio_rfd; /* read file desriptor */
111typedef int aio_wfd; /* write file descriptor */ 105typedef int aio_wfd; /* write file descriptor */
112 106
113static HV *aio_stash, *aio_req_stash, *aio_grp_stash; 107static HV *aio_stash, *aio_req_stash, *aio_grp_stash, *aio_wd_stash;
114 108
115#define EIO_REQ_MEMBERS \ 109#define EIO_REQ_MEMBERS \
116 SV *callback; \ 110 SV *callback; \
117 SV *sv1, *sv2; \ 111 SV *sv1, *sv2; \
112 SV *sv3, *sv4; \
118 STRLEN stroffset; \ 113 STRLEN stroffset; \
119 SV *self; 114 SV *self;
120 115
121#define EIO_NO_WRAPPERS 1 116#define EIO_NO_WRAPPERS 1
122 117
118#include "libeio/config.h"
123#include "libeio/eio.h" 119#include "libeio/eio.h"
124
125#ifndef POSIX_FADV_NORMAL
126# define POSIX_FADV_NORMAL 0
127# define NO_FADVISE 1
128#endif
129#ifndef POSIX_FADV_SEQUENTIAL
130# define POSIX_FADV_SEQUENTIAL 0
131#endif
132#ifndef POSIX_FADV_RANDOM
133# define POSIX_FADV_RANDOM 0
134#endif
135#ifndef POSIX_FADV_NOREUSE
136# define POSIX_FADV_NOREUSE 0
137#endif
138#ifndef POSIX_FADV_WILLNEED
139# define POSIX_FADV_WILLNEED 0
140#endif
141#ifndef POSIX_FADV_DONTNEED
142# define POSIX_FADV_DONTNEED 0
143#endif
144
145#ifndef ST_NODEV
146# define ST_NODEV 0
147#endif
148#ifndef ST_NOEXEC
149# define ST_NOEXEC 0
150#endif
151#ifndef ST_SYNCHRONOUS
152# define ST_SYNCHRONOUS 0
153#endif
154#ifndef ST_MANDLOCK
155# define ST_MANDLOCK 0
156#endif
157#ifndef ST_WRITE
158# define ST_WRITE 0
159#endif
160#ifndef ST_APPEND
161# define ST_APPEND 0
162#endif
163#ifndef ST_IMMUTABLE
164# define ST_IMMUTABLE 0
165#endif
166#ifndef ST_NOATIME
167# define ST_NOATIME 0
168#endif
169#ifndef ST_NODIRATIME
170# define ST_NODIRATIME 0
171#endif
172#ifndef ST_RELATIME
173# define ST_RELATIME 0
174#endif
175
176#ifndef MCL_CURRENT
177# define MCL_CURRENT 0
178#endif
179#ifndef MCL_FUTURE
180# define MCL_FUTURE 0
181#endif
182 120
183static int req_invoke (eio_req *req); 121static int req_invoke (eio_req *req);
184#define EIO_FINISH(req) req_invoke (req) 122#define EIO_FINISH(req) req_invoke (req)
185static void req_destroy (eio_req *grp); 123static void req_destroy (eio_req *grp);
186#define EIO_DESTROY(req) req_destroy (req) 124#define EIO_DESTROY(req) req_destroy (req)
187 125
126#include "libeio/eio.c"
127
128/* Linux/others */
129#ifndef O_ASYNC
130# define O_ASYNC 0
131#endif
132#ifndef O_DIRECT
133# define O_DIRECT 0
134#endif
135#ifndef O_NOATIME
136# define O_NOATIME 0
137#endif
138
139/* POSIX */
140#ifndef O_CLOEXEC
141# define O_CLOEXEC 0
142#endif
143#ifndef O_NOFOLLOW
144# define O_NOFOLLOW 0
145#endif
146#ifndef O_NOCTTY
147# define O_NOCTTY 0
148#endif
149#ifndef O_NONBLOCK
150# define O_NONBLOCK 0
151#endif
152#ifndef O_EXEC
153# define O_EXEC 0
154#endif
155#ifndef O_SEARCH
156# define O_SEARCH 0
157#endif
158#ifndef O_DIRECTORY
159# define O_DIRECTORY 0
160#endif
161#ifndef O_DSYNC
162# define O_DSYNC 0
163#endif
164#ifndef O_RSYNC
165# define O_RSYNC 0
166#endif
167#ifndef O_SYNC
168# define O_SYNC 0
169#endif
170#ifndef O_TTY_INIT
171# define O_TTY_INIT 0
172#endif
173
174#ifndef POSIX_FADV_NORMAL
175# define POSIX_FADV_NORMAL 0
176#endif
177#ifndef POSIX_FADV_SEQUENTIAL
178# define POSIX_FADV_SEQUENTIAL 0
179#endif
180#ifndef POSIX_FADV_RANDOM
181# define POSIX_FADV_RANDOM 0
182#endif
183#ifndef POSIX_FADV_NOREUSE
184# define POSIX_FADV_NOREUSE 0
185#endif
186#ifndef POSIX_FADV_WILLNEED
187# define POSIX_FADV_WILLNEED 0
188#endif
189#ifndef POSIX_FADV_DONTNEED
190# define POSIX_FADV_DONTNEED 0
191#endif
192
193#if !HAVE_POSIX_FADVISE
194# define posix_fadvise(a,b,c,d) errno = ENOSYS /* also return ENOSYS */
195#endif
196
197#ifndef POSIX_MADV_NORMAL
198# define POSIX_MADV_NORMAL 0
199#endif
200#ifndef POSIX_MADV_SEQUENTIAL
201# define POSIX_MADV_SEQUENTIAL 0
202#endif
203#ifndef POSIX_MADV_RANDOM
204# define POSIX_MADV_RANDOM 0
205#endif
206#ifndef POSIX_MADV_WILLNEED
207# define POSIX_MADV_WILLNEED 0
208#endif
209#ifndef POSIX_MADV_DONTNEED
210# define POSIX_MADV_DONTNEED 0
211#endif
212
213#if !HAVE_POSIX_MADVISE
214# define posix_madvise(a,b,c) errno = ENOSYS /* also return ENOSYS */
215#endif
216
217#ifndef PROT_NONE
218# define PROT_NONE 0
219#endif
220#ifndef PROT_READ
221# define PROT_READ 0
222#endif
223#ifndef PROT_WRITE
224# define PROT_READ 0
225#endif
226#ifndef PROT_EXEC
227# define PROT_EXEC 0
228#endif
229
230#ifndef ST_RDONLY
231# define ST_RDONLY 0
232#endif
233#ifndef ST_NOSUID
234# define ST_NOSUID 0
235#endif
236#ifndef ST_NODEV
237# define ST_NODEV 0
238#endif
239#ifndef ST_NOEXEC
240# define ST_NOEXEC 0
241#endif
242#ifndef ST_SYNCHRONOUS
243# define ST_SYNCHRONOUS 0
244#endif
245#ifndef ST_MANDLOCK
246# define ST_MANDLOCK 0
247#endif
248#ifndef ST_WRITE
249# define ST_WRITE 0
250#endif
251#ifndef ST_APPEND
252# define ST_APPEND 0
253#endif
254#ifndef ST_IMMUTABLE
255# define ST_IMMUTABLE 0
256#endif
257#ifndef ST_NOATIME
258# define ST_NOATIME 0
259#endif
260#ifndef ST_NODIRATIME
261# define ST_NODIRATIME 0
262#endif
263#ifndef ST_RELATIME
264# define ST_RELATIME 0
265#endif
266
267#ifndef S_IFIFO
268# define S_IFIFO 0
269#endif
270#ifndef S_IFCHR
271# define S_IFCHR 0
272#endif
273#ifndef S_IFBLK
274# define S_IFBLK 0
275#endif
276#ifndef S_IFLNK
277# define S_IFLNK 0
278#endif
279#ifndef S_IFREG
280# define S_IFREG 0
281#endif
282#ifndef S_IFDIR
283# define S_IFDIR 0
284#endif
285#ifndef S_IFWHT
286# define S_IFWHT 0
287#endif
288#ifndef S_IFSOCK
289# define S_IFSOCK 0
290#endif
291
292#ifndef MAP_ANONYMOUS
293# ifdef MAP_ANON
294# define MAP_ANONYMOUS MAP_ANON
295# else
296# define MAP_ANONYMOUS MAP_FIXED /* and hope this fails */
297# endif
298#endif
299#ifndef MAP_HUGETLB
300# define MAP_HUGETLB 0
301#endif
302#ifndef MAP_LOCKED
303# define MAP_LOCKED 0
304#endif
305#ifndef MAP_NORESERVE
306# define MAP_NORESERVE 0
307#endif
308#ifndef MAP_POPULATE
309# define MAP_POPULATE 0
310#endif
311#ifndef MAP_NONBLOCK
312# define MAP_NONBLOCK 0
313#endif
314
315#ifndef makedev
316# define makedev(maj,min) (((maj) << 8) | (min))
317#endif
318#ifndef major
319# define major(dev) ((dev) >> 8)
320#endif
321#ifndef minor
322# define minor(dev) ((dev) & 0xff)
323#endif
324
325#ifndef PAGESIZE
326# define PAGESIZE sysconf (_SC_PAGESIZE)
327#endif
328
188enum { 329enum {
189 FLAG_SV2_RO_OFF = 0x40, /* data was set readonly */ 330 FLAG_SV2_RO_OFF = 0x40, /* data was set readonly */
190}; 331};
191 332
192#include "libeio/eio.c"
193
194typedef eio_req *aio_req; 333typedef eio_req *aio_req;
195typedef eio_req *aio_req_ornot; 334typedef eio_req *aio_req_ornot;
335typedef eio_wd aio_wd;
196 336
197static SV *on_next_submit; 337static SV *on_next_submit;
198static int next_pri = EIO_PRI_DEFAULT; 338static int next_pri = EIO_PRI_DEFAULT;
199static int max_outstanding; 339static int max_outstanding;
200 340
201static s_epipe respipe; 341static s_epipe respipe;
202 342
203static void req_destroy (aio_req req); 343static void req_destroy (aio_req req);
204static void req_cancel (aio_req req); 344static void req_cancel (aio_req req);
205 345
206static void want_poll (void) 346static void
347want_poll (void)
207{ 348{
208 /* write a dummy byte to the pipe so fh becomes ready */ 349 /* write a dummy byte to the pipe so fh becomes ready */
209 s_epipe_signal (&respipe); 350 s_epipe_signal (&respipe);
210} 351}
211 352
212static void done_poll (void) 353static void
354done_poll (void)
213{ 355{
214 /* read any signals sent by the worker threads */ 356 /* read any signals sent by the worker threads */
215 s_epipe_drain (&respipe); 357 s_epipe_drain (&respipe);
216} 358}
217 359
218/* must be called at most once */ 360/* must be called at most once */
361static SV *
219static SV *req_sv (aio_req req, HV *stash) 362req_sv (aio_req req, HV *stash)
220{ 363{
221 if (!req->self) 364 if (!req->self)
222 { 365 {
223 req->self = (SV *)newHV (); 366 req->self = (SV *)newHV ();
224 sv_magic (req->self, 0, PERL_MAGIC_ext, (char *)req, 0); 367 sv_magic (req->self, 0, PERL_MAGIC_ext, (char *)req, 0);
225 } 368 }
226 369
227 return sv_2mortal (sv_bless (newRV_inc (req->self), stash)); 370 return sv_2mortal (sv_bless (newRV_inc (req->self), stash));
228} 371}
229 372
230static aio_req SvAIO_REQ (SV *sv) 373static SV *
374newSVaio_wd (aio_wd wd)
375{
376 return sv_bless (newRV_noinc (newSViv ((IV)wd)), aio_wd_stash);
377}
378
379static aio_req
380SvAIO_REQ (SV *sv)
231{ 381{
232 MAGIC *mg; 382 MAGIC *mg;
233 383
234 if (!SvROK (sv) 384 if (!SvROK (sv)
385 /* for speed reasons, we do not verify that SvROK actually has a stash ptr */
235 || (SvSTASH (SvRV (sv)) != aio_grp_stash 386 || (SvSTASH (SvRV (sv)) != aio_grp_stash
236 && SvSTASH (SvRV (sv)) != aio_req_stash 387 && SvSTASH (SvRV (sv)) != aio_req_stash
237 && !sv_derived_from (sv, "IO::AIO::REQ"))) 388 && !sv_derived_from (sv, "IO::AIO::REQ")))
238 croak ("object of class IO::AIO::REQ expected"); 389 croak ("object of class IO::AIO::REQ expected");
239 390
240 mg = mg_find (SvRV (sv), PERL_MAGIC_ext); 391 mg = mg_find (SvRV (sv), PERL_MAGIC_ext);
241 392
242 return mg ? (aio_req)mg->mg_ptr : 0; 393 return mg ? (aio_req)mg->mg_ptr : 0;
243} 394}
244 395
396static aio_wd
397SvAIO_WD (SV *sv)
398{
399 if (!SvROK (sv)
400 || SvTYPE (SvRV (sv)) != SVt_PVMG
401 || SvSTASH (SvRV (sv)) != aio_wd_stash)
402 croak ("IO::AIO: expected a working directory object as returned by aio_wd");
403
404 return (aio_wd)(long)SvIVX (SvRV (sv));
405}
406
407static void
245static void aio_grp_feed (aio_req grp) 408aio_grp_feed (aio_req grp)
246{ 409{
247 if (grp->sv2 && SvOK (grp->sv2)) 410 if (grp->sv2 && SvOK (grp->sv2))
248 { 411 {
249 dSP; 412 dSP;
250 413
258 FREETMPS; 421 FREETMPS;
259 LEAVE; 422 LEAVE;
260 } 423 }
261} 424}
262 425
426static void
263static void req_submit (eio_req *req) 427req_submit (eio_req *req)
264{ 428{
265 eio_submit (req); 429 eio_submit (req);
266 430
267 if (expect_false (on_next_submit)) 431 if (expect_false (on_next_submit))
268 { 432 {
275 PUTBACK; 439 PUTBACK;
276 call_sv (cb, G_DISCARD | G_EVAL); 440 call_sv (cb, G_DISCARD | G_EVAL);
277 } 441 }
278} 442}
279 443
444static int
280static int req_invoke (eio_req *req) 445req_invoke (eio_req *req)
281{ 446{
282 dSP;
283
284 if (req->flags & FLAG_SV2_RO_OFF) 447 if (req->flags & FLAG_SV2_RO_OFF)
285 SvREADONLY_off (req->sv2); 448 SvREADONLY_off (req->sv2);
286 449
287 if (!EIO_CANCELLED (req) && req->callback) 450 if (!EIO_CANCELLED (req) && req->callback)
288 { 451 {
452 dSP;
453 static SV *sv_result_cache; /* caches the result integer SV */
454 SV *sv_result;
455
289 ENTER; 456 ENTER;
290 SAVETMPS; 457 SAVETMPS;
291 PUSHMARK (SP); 458 PUSHMARK (SP);
292 EXTEND (SP, 1); 459 EXTEND (SP, 1);
293 460
461 /* do not recreate the result IV from scratch each time */
462 if (expect_true (sv_result_cache))
463 {
464 sv_result = sv_result_cache; sv_result_cache = 0;
465 SvIV_set (sv_result, req->result);
466 SvIOK_only (sv_result);
467 }
468 else
469 {
470 sv_result = newSViv (req->result);
471 SvREADONLY_on (sv_result);
472 }
473
294 switch (req->type) 474 switch (req->type)
295 { 475 {
476 case EIO_WD_OPEN:
477 PUSHs (req->result ? &PL_sv_undef : sv_2mortal (newSVaio_wd (req->wd)));
478 break;
479
296 case EIO_READDIR: 480 case EIO_READDIR:
297 { 481 {
298 SV *rv = &PL_sv_undef; 482 SV *rv = &PL_sv_undef;
299 483
300 if (req->result >= 0) 484 if (req->result >= 0)
388 case EIO_STATVFS: 572 case EIO_STATVFS:
389 case EIO_FSTATVFS: 573 case EIO_FSTATVFS:
390 { 574 {
391 SV *rv = &PL_sv_undef; 575 SV *rv = &PL_sv_undef;
392 576
577#ifndef _WIN32
393 if (req->result >= 0) 578 if (req->result >= 0)
394 { 579 {
395 EIO_STRUCT_STATVFS *f = EIO_STATVFS_BUF (req); 580 EIO_STRUCT_STATVFS *f = EIO_STATVFS_BUF (req);
396 HV *hv = newHV (); 581 HV *hv = newHV ();
397 582
407 hv_store (hv, "favail" , sizeof ("favail" ) - 1, newSVval64 (f->f_favail ), 0); 592 hv_store (hv, "favail" , sizeof ("favail" ) - 1, newSVval64 (f->f_favail ), 0);
408 hv_store (hv, "fsid" , sizeof ("fsid" ) - 1, newSVval64 (f->f_fsid ), 0); 593 hv_store (hv, "fsid" , sizeof ("fsid" ) - 1, newSVval64 (f->f_fsid ), 0);
409 hv_store (hv, "flag" , sizeof ("flag" ) - 1, newSVval64 (f->f_flag ), 0); 594 hv_store (hv, "flag" , sizeof ("flag" ) - 1, newSVval64 (f->f_flag ), 0);
410 hv_store (hv, "namemax", sizeof ("namemax") - 1, newSVval64 (f->f_namemax), 0); 595 hv_store (hv, "namemax", sizeof ("namemax") - 1, newSVval64 (f->f_namemax), 0);
411 } 596 }
597#endif
412 598
413 PUSHs (rv); 599 PUSHs (rv);
414 } 600 }
415 601
416 break; 602 break;
432 case EIO_NOP: 618 case EIO_NOP:
433 case EIO_BUSY: 619 case EIO_BUSY:
434 break; 620 break;
435 621
436 case EIO_READLINK: 622 case EIO_READLINK:
623 case EIO_REALPATH:
437 if (req->result > 0) 624 if (req->result > 0)
438 PUSHs (sv_2mortal (newSVpvn (req->ptr2, req->result))); 625 PUSHs (sv_2mortal (newSVpvn (req->ptr2, req->result)));
439 break; 626 break;
440 627
441 case EIO_STAT: 628 case EIO_STAT:
442 case EIO_LSTAT: 629 case EIO_LSTAT:
443 case EIO_FSTAT: 630 case EIO_FSTAT:
444 PL_laststype = req->type == EIO_LSTAT ? OP_LSTAT : OP_STAT; 631 PL_laststype = req->type == EIO_LSTAT ? OP_LSTAT : OP_STAT;
632
445 PL_laststatval = req->result; 633 if (!(PL_laststatval = req->result))
634 /* if compilation fails here then perl's Stat_t is not struct _stati64 */
446 PL_statcache = *(EIO_STRUCT_STAT *)(req->ptr2); 635 PL_statcache = *(EIO_STRUCT_STAT *)(req->ptr2);
447 PUSHs (sv_2mortal (newSViv (req->result))); 636
637 PUSHs (sv_result);
448 break; 638 break;
449 639
450 case EIO_READ: 640 case EIO_READ:
451 { 641 {
452 SvCUR_set (req->sv2, req->stroffset + (req->result > 0 ? req->result : 0)); 642 SvCUR_set (req->sv2, req->stroffset + (req->result > 0 ? req->result : 0));
453 *SvEND (req->sv2) = 0; 643 *SvEND (req->sv2) = 0;
454 SvPOK_only (req->sv2); 644 SvPOK_only (req->sv2);
455 SvSETMAGIC (req->sv2); 645 SvSETMAGIC (req->sv2);
456 PUSHs (sv_2mortal (newSViv (req->result))); 646 PUSHs (sv_result);
457 } 647 }
458 break; 648 break;
459 649
460 case EIO_DUP2: 650 case EIO_DUP2: /* EIO_DUP2 actually means aio_close(), so fudge result value */
461 if (req->result > 0) 651 if (req->result > 0)
462 req->result = 0; 652 SvIV_set (sv_result, 0);
463 /* FALLTHROUGH */ 653 /* FALLTHROUGH */
464 654
465 default: 655 default:
466 PUSHs (sv_2mortal (newSViv (req->result))); 656 PUSHs (sv_result);
467 break; 657 break;
468 } 658 }
469 659
470 errno = req->errorno; 660 errno = req->errorno;
471 661
472 PUTBACK; 662 PUTBACK;
473 call_sv (req->callback, G_VOID | G_EVAL | G_DISCARD); 663 call_sv (req->callback, G_VOID | G_EVAL | G_DISCARD);
474 SPAGAIN; 664 SPAGAIN;
475 665
666 if (expect_false (SvREFCNT (sv_result) != 1 || sv_result_cache))
667 SvREFCNT_dec (sv_result);
668 else
669 sv_result_cache = sv_result;
670
476 FREETMPS; 671 FREETMPS;
477 LEAVE; 672 LEAVE;
478 673
479 PUTBACK; 674 PUTBACK;
480 } 675 }
481 676
482 return !!SvTRUE (ERRSV); 677 return !!SvTRUE (ERRSV);
483} 678}
484 679
680static void
485static void req_destroy (aio_req req) 681req_destroy (aio_req req)
486{ 682{
487 if (req->self) 683 if (req->self)
488 { 684 {
489 sv_unmagic (req->self, PERL_MAGIC_ext); 685 sv_unmagic (req->self, PERL_MAGIC_ext);
490 SvREFCNT_dec (req->self); 686 SvREFCNT_dec (req->self);
491 } 687 }
492 688
493 SvREFCNT_dec (req->sv1); 689 SvREFCNT_dec (req->sv1);
494 SvREFCNT_dec (req->sv2); 690 SvREFCNT_dec (req->sv2);
691 SvREFCNT_dec (req->sv3);
692 SvREFCNT_dec (req->sv4);
495 SvREFCNT_dec (req->callback); 693 SvREFCNT_dec (req->callback);
496 694
497 Safefree (req); 695 free (req);
498} 696}
499 697
698static void
500static void req_cancel_subs (aio_req grp) 699req_cancel_subs (aio_req grp)
501{ 700{
502 aio_req sub;
503
504 if (grp->type != EIO_GROUP) 701 if (grp->type != EIO_GROUP)
505 return; 702 return;
506 703
507 SvREFCNT_dec (grp->sv2); 704 SvREFCNT_dec (grp->sv2);
508 grp->sv2 = 0; 705 grp->sv2 = 0;
509 706
510 eio_grp_cancel (grp); 707 eio_grp_cancel (grp);
511} 708}
512 709
513static void 710static void ecb_cold
514create_respipe (void) 711create_respipe (void)
515{ 712{
516 if (s_epipe_renew (&respipe)) 713 if (s_epipe_renew (&respipe))
517 croak ("IO::AIO: unable to initialize result pipe"); 714 croak ("IO::AIO: unable to initialize result pipe");
518} 715}
519 716
520static void poll_wait (void) 717static void
718poll_wait (void)
521{ 719{
522 while (eio_nreqs ()) 720 while (eio_nreqs ())
523 { 721 {
524 int size; 722 int size;
525 723
534 732
535 s_epipe_wait (&respipe); 733 s_epipe_wait (&respipe);
536 } 734 }
537} 735}
538 736
539static int poll_cb (void) 737static int
738poll_cb (void)
540{ 739{
541 for (;;) 740 for (;;)
542 { 741 {
543 int res = eio_poll (); 742 int res = eio_poll ();
544 743
550 749
551 poll_wait (); 750 poll_wait ();
552 } 751 }
553} 752}
554 753
555static void atfork_child (void) 754static void ecb_cold
755reinit (void)
556{ 756{
557 create_respipe (); 757 create_respipe ();
758
759 if (eio_init (want_poll, done_poll) < 0)
760 croak ("IO::AIO: unable to initialise eio library");
558} 761}
762
763/*****************************************************************************/
764
765#if !_POSIX_MAPPED_FILES
766# define mmap(addr,length,prot,flags,fd,offs) (errno = ENOSYS, -1)
767# define munmap(addr,length) (errno = ENOSYS, -1)
768#endif
769
770#if !_POSIX_MEMORY_PROTECTION
771# define mprotect(addr,len,prot) (errno = ENOSYS, -1)
772# define PROT_NONE 0
773# define PROT_WRITE 0
774# define MAP_PRIVATE 0
775# define MAP_SHARED 0
776# define MAP_FIXED 0
777#endif
778
779#define MMAP_MAGIC PERL_MAGIC_ext
780
781static int ecb_cold
782mmap_free (pTHX_ SV *sv, MAGIC *mg)
783{
784 int old_errno = errno;
785 munmap (mg->mg_ptr, (size_t)mg->mg_obj);
786 errno = old_errno;
787
788 mg->mg_obj = 0; /* just in case */
789
790 SvREADONLY_off (sv);
791
792 if (SvPVX (sv) != mg->mg_ptr)
793 croak ("ERROR: IO::AIO::mmap-mapped scalar changed location, detected");
794
795 SvCUR_set (sv, 0);
796 SvPVX (sv) = 0;
797 SvOK_off (sv);
798
799 return 0;
800}
801
802static MGVTBL mmap_vtbl = {
803 0, 0, 0, 0, mmap_free
804};
805
806/*****************************************************************************/
559 807
560static SV * 808static SV *
561get_cb (SV *cb_sv) 809get_cb (SV *cb_sv)
562{ 810{
563 SvGETMAGIC (cb_sv); 811 SvGETMAGIC (cb_sv);
564 return SvOK (cb_sv) ? s_get_cv_croak (cb_sv) : 0; 812 return SvOK (cb_sv) ? s_get_cv_croak (cb_sv) : 0;
565} 813}
566 814
815static aio_req ecb_noinline
816dreq (SV *callback)
817{
818 SV *cb_cv;
819 aio_req req;
820 int req_pri = next_pri;
821 next_pri = EIO_PRI_DEFAULT;
822
823 cb_cv = get_cb (callback);
824
825 req = calloc (sizeof (*req), 1);
826 if (!req)
827 croak ("out of memory during eio_req allocation");
828
829 req->callback = SvREFCNT_inc (cb_cv);
830 req->pri = req_pri;
831
832 return req;
833}
834
567#define dREQ \ 835#define dREQ \
568 SV *cb_cv; \ 836 aio_req req = dreq (callback); \
569 aio_req req; \
570 int req_pri = next_pri; \
571 next_pri = EIO_PRI_DEFAULT; \
572 \
573 cb_cv = get_cb (callback); \
574 \
575 Newz (0, req, 1, eio_req); \
576 if (!req) \
577 croak ("out of memory during eio_req allocation"); \
578 \
579 req->callback = SvREFCNT_inc (cb_cv); \
580 req->pri = req_pri
581 837
582#define REQ_SEND \ 838#define REQ_SEND \
583 PUTBACK; \ 839 PUTBACK; \
584 req_submit (req); \ 840 req_submit (req); \
585 SPAGAIN; \ 841 SPAGAIN; \
586 \ 842 \
587 if (GIMME_V != G_VOID) \ 843 if (GIMME_V != G_VOID) \
588 XPUSHs (req_sv (req, aio_req_stash)); 844 XPUSHs (req_sv (req, aio_req_stash));
589 845
846ecb_inline void
847req_set_path (aio_req req, SV *path, SV **wdsv, SV **pathsv, eio_wd *wd, void **ptr)
848{
849 if (expect_false (SvROK (path)))
850 {
851 SV *rv = SvRV (path);
852 SV *wdob;
853
854 if (SvTYPE (rv) == SVt_PVAV && AvFILLp (rv) == 1)
855 {
856 path = AvARRAY (rv)[1];
857 wdob = AvARRAY (rv)[0];
858
859 if (SvOK (wdob))
860 {
861 *wd = SvAIO_WD (wdob);
862 *wdsv = SvREFCNT_inc_NN (SvRV (wdob));
863 }
864 else
865 *wd = EIO_INVALID_WD;
866 }
867 else if (SvTYPE (rv) == SVt_PVMG && SvSTASH (rv) == aio_wd_stash)
868 {
869 *wd = SvIVX (rv);
870 *wdsv = SvREFCNT_inc_NN (rv);
871 *ptr = ".";
872 return; /* path set to "." */
873 }
874 else
875 croak ("IO::AIO: pathname arguments must be specified as a string, an IO::AIO::WD object or a [IO::AIO::WD, path] pair");
876 }
877
878 *pathsv = newSVsv (path);
879 *ptr = SvPVbyte_nolen (*pathsv);
880}
881
882static void ecb_noinline
883req_set_path1 (aio_req req, SV *path)
884{
885 req_set_path (req, path, &req->sv1, &req->sv3, &req->wd, &req->ptr1);
886}
887
888static void ecb_noinline
889req_set_fh_or_path (aio_req req, int type_path, int type_fh, SV *fh_or_path)
890{
891 SV *rv = SvROK (fh_or_path) ? SvRV (fh_or_path) : fh_or_path;
892
893 switch (SvTYPE (rv))
894 {
895 case SVt_PVIO:
896 case SVt_PVLV:
897 case SVt_PVGV:
898 req->type = type_fh;
899 req->sv1 = newSVsv (fh_or_path);
900 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
901 break;
902
903 default:
904 req->type = type_path;
905 req_set_path1 (req, fh_or_path);
906 break;
907 }
908}
909
910XS(boot_IO__AIO) ecb_cold;
911
590MODULE = IO::AIO PACKAGE = IO::AIO 912MODULE = IO::AIO PACKAGE = IO::AIO
591 913
592PROTOTYPES: ENABLE 914PROTOTYPES: ENABLE
593 915
594BOOT: 916BOOT:
595{ 917{
596 static const struct { 918 static const struct {
597 const char *name; 919 const char *name;
598 IV iv; 920 IV iv;
599 } *civ, const_iv[] = { 921 } *civ, const_iv[] = {
600# define const_iv(name, value) { # name, (IV) value }, 922# define const_niv(name, value) { # name, (IV) value },
923# define const_iv(name) { # name, (IV) name },
601# define const_eio(name) { # name, (IV) EIO_ ## name }, 924# define const_eio(name) { # name, (IV) EIO_ ## name },
602 const_iv (EXDEV , EXDEV) 925 const_iv (EXDEV)
603 const_iv (ENOSYS , ENOSYS) 926 const_iv (ENOSYS)
604 const_iv (O_RDONLY, O_RDONLY) 927 const_iv (O_RDONLY)
605 const_iv (O_WRONLY, O_WRONLY) 928 const_iv (O_WRONLY)
929 const_iv (O_RDWR)
606 const_iv (O_CREAT , O_CREAT) 930 const_iv (O_CREAT)
607 const_iv (O_TRUNC , O_TRUNC) 931 const_iv (O_TRUNC)
608#ifndef _WIN32 932 const_iv (O_EXCL)
933 const_iv (O_APPEND)
934
935 const_iv (O_ASYNC)
936 const_iv (O_DIRECT)
937 const_iv (O_NOATIME)
938
939 const_iv (O_CLOEXEC)
940 const_iv (O_NOCTTY)
941 const_iv (O_NOFOLLOW)
942 const_iv (O_NONBLOCK)
943 const_iv (O_EXEC)
944 const_iv (O_SEARCH)
945 const_iv (O_DIRECTORY)
946 const_iv (O_DSYNC)
947 const_iv (O_RSYNC)
948 const_iv (O_SYNC)
949 const_iv (O_TTY_INIT)
950
609 const_iv (S_IFIFO , S_IFIFO) 951 const_iv (S_IFIFO)
610#endif 952 const_iv (S_IFCHR)
953 const_iv (S_IFBLK)
954 const_iv (S_IFLNK)
955 const_iv (S_IFREG)
956 const_iv (S_IFDIR)
957 const_iv (S_IFWHT)
958 const_iv (S_IFSOCK)
959 const_iv (S_IFMT)
960
611 const_iv (FADV_NORMAL , POSIX_FADV_NORMAL) 961 const_niv (FADV_NORMAL , POSIX_FADV_NORMAL)
612 const_iv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL) 962 const_niv (FADV_SEQUENTIAL, POSIX_FADV_SEQUENTIAL)
613 const_iv (FADV_RANDOM , POSIX_FADV_RANDOM) 963 const_niv (FADV_RANDOM , POSIX_FADV_RANDOM)
614 const_iv (FADV_NOREUSE , POSIX_FADV_NOREUSE) 964 const_niv (FADV_NOREUSE , POSIX_FADV_NOREUSE)
615 const_iv (FADV_WILLNEED , POSIX_FADV_WILLNEED) 965 const_niv (FADV_WILLNEED , POSIX_FADV_WILLNEED)
616 const_iv (FADV_DONTNEED , POSIX_FADV_DONTNEED) 966 const_niv (FADV_DONTNEED , POSIX_FADV_DONTNEED)
617 967
618 const_iv (ST_RDONLY , ST_RDONLY) 968 const_niv (MADV_NORMAL , POSIX_MADV_NORMAL)
619 const_iv (ST_NOSUID , ST_NOSUID) 969 const_niv (MADV_SEQUENTIAL, POSIX_MADV_SEQUENTIAL)
620 const_iv (ST_NODEV , ST_NODEV) 970 const_niv (MADV_RANDOM , POSIX_MADV_RANDOM)
621 const_iv (ST_NOEXEC , ST_NOEXEC) 971 const_niv (MADV_WILLNEED , POSIX_MADV_WILLNEED)
972 const_niv (MADV_DONTNEED , POSIX_MADV_DONTNEED)
973
974 const_iv (ST_RDONLY)
975 const_iv (ST_NOSUID)
976 const_iv (ST_NODEV)
977 const_iv (ST_NOEXEC)
622 const_iv (ST_SYNCHRONOUS , ST_SYNCHRONOUS) 978 const_iv (ST_SYNCHRONOUS)
623 const_iv (ST_MANDLOCK , ST_MANDLOCK) 979 const_iv (ST_MANDLOCK)
624 const_iv (ST_WRITE , ST_WRITE) 980 const_iv (ST_WRITE)
625 const_iv (ST_APPEND , ST_APPEND) 981 const_iv (ST_APPEND)
626 const_iv (ST_IMMUTABLE , ST_IMMUTABLE) 982 const_iv (ST_IMMUTABLE)
627 const_iv (ST_NOATIME , ST_NOATIME) 983 const_iv (ST_NOATIME)
628 const_iv (ST_NODIRATIME , ST_NODIRATIME) 984 const_iv (ST_NODIRATIME)
629 const_iv (ST_RELATIME , ST_RELATIME) 985 const_iv (ST_RELATIME)
630 986
631 const_iv (MCL_FUTURE , MCL_FUTURE) 987 const_iv (PROT_NONE)
632 const_iv (MCL_CURRENT , MCL_CURRENT) 988 const_iv (PROT_EXEC)
989 const_iv (PROT_READ)
990 const_iv (PROT_WRITE)
991
992 /*const_iv (MAP_FIXED)*/
993 const_iv (MAP_PRIVATE)
994 const_iv (MAP_SHARED)
995 const_iv (MAP_ANONYMOUS)
996
997 /* linuxish */
998 const_iv (MAP_HUGETLB)
999 const_iv (MAP_LOCKED)
1000 const_iv (MAP_NORESERVE)
1001 const_iv (MAP_POPULATE)
1002 const_iv (MAP_NONBLOCK)
1003
1004 const_eio (MCL_FUTURE)
1005 const_eio (MCL_CURRENT)
633 1006
634 const_eio (MS_ASYNC) 1007 const_eio (MS_ASYNC)
635 const_eio (MS_INVALIDATE) 1008 const_eio (MS_INVALIDATE)
636 const_eio (MS_SYNC) 1009 const_eio (MS_SYNC)
637 1010
638 const_eio (MT_MODIFY) 1011 const_eio (MT_MODIFY)
639 1012
640 const_eio (SYNC_FILE_RANGE_WAIT_BEFORE) 1013 const_eio (SYNC_FILE_RANGE_WAIT_BEFORE)
641 const_eio (SYNC_FILE_RANGE_WRITE) 1014 const_eio (SYNC_FILE_RANGE_WRITE)
642 const_eio (SYNC_FILE_RANGE_WAIT_AFTER) 1015 const_eio (SYNC_FILE_RANGE_WAIT_AFTER)
1016
1017 const_eio (FALLOC_FL_KEEP_SIZE)
643 1018
644 const_eio (READDIR_DENTS) 1019 const_eio (READDIR_DENTS)
645 const_eio (READDIR_DIRS_FIRST) 1020 const_eio (READDIR_DIRS_FIRST)
646 const_eio (READDIR_STAT_ORDER) 1021 const_eio (READDIR_STAT_ORDER)
647 const_eio (READDIR_FOUND_UNKNOWN) 1022 const_eio (READDIR_FOUND_UNKNOWN)
658 }; 1033 };
659 1034
660 aio_stash = gv_stashpv ("IO::AIO" , 1); 1035 aio_stash = gv_stashpv ("IO::AIO" , 1);
661 aio_req_stash = gv_stashpv ("IO::AIO::REQ", 1); 1036 aio_req_stash = gv_stashpv ("IO::AIO::REQ", 1);
662 aio_grp_stash = gv_stashpv ("IO::AIO::GRP", 1); 1037 aio_grp_stash = gv_stashpv ("IO::AIO::GRP", 1);
1038 aio_wd_stash = gv_stashpv ("IO::AIO::WD" , 1);
663 1039
664 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 1040 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ > const_iv; civ--)
665 newCONSTSUB (aio_stash, (char *)civ->name, newSViv (civ->iv)); 1041 newCONSTSUB (aio_stash, (char *)civ[-1].name, newSViv (civ[-1].iv));
666 1042
667 create_respipe (); 1043 newCONSTSUB (aio_stash, "PAGESIZE", newSViv (PAGESIZE));
668 1044
669 if (eio_init (want_poll, done_poll) < 0) 1045 reinit ();
670 croak ("IO::AIO: unable to initialise eio library");
671
672 /* atfork child called in fifo order, so before eio's handler */
673 X_THREAD_ATFORK (0, 0, atfork_child);
674} 1046}
675 1047
676void 1048void
1049reinit ()
1050 PROTOTYPE:
1051
1052void
677max_poll_reqs (int nreqs) 1053max_poll_reqs (unsigned int nreqs)
678 PROTOTYPE: $ 1054 PROTOTYPE: $
679 CODE: 1055 CODE:
680 eio_set_max_poll_reqs (nreqs); 1056 eio_set_max_poll_reqs (nreqs);
681 1057
682void 1058void
684 PROTOTYPE: $ 1060 PROTOTYPE: $
685 CODE: 1061 CODE:
686 eio_set_max_poll_time (nseconds); 1062 eio_set_max_poll_time (nseconds);
687 1063
688void 1064void
689min_parallel (int nthreads) 1065min_parallel (unsigned int nthreads)
690 PROTOTYPE: $ 1066 PROTOTYPE: $
691 CODE: 1067 CODE:
692 eio_set_min_parallel (nthreads); 1068 eio_set_min_parallel (nthreads);
693 1069
694void 1070void
695max_parallel (int nthreads) 1071max_parallel (unsigned int nthreads)
696 PROTOTYPE: $ 1072 PROTOTYPE: $
697 CODE: 1073 CODE:
698 eio_set_max_parallel (nthreads); 1074 eio_set_max_parallel (nthreads);
699 1075
700void 1076void
701max_idle (int nthreads) 1077max_idle (unsigned int nthreads)
702 PROTOTYPE: $ 1078 PROTOTYPE: $
703 CODE: 1079 CODE:
704 eio_set_max_idle (nthreads); 1080 eio_set_max_idle (nthreads);
705 1081
706void 1082void
1083idle_timeout (unsigned int seconds)
1084 PROTOTYPE: $
1085 CODE:
1086 eio_set_idle_timeout (seconds);
1087
1088void
707max_outstanding (int maxreqs) 1089max_outstanding (unsigned int maxreqs)
708 PROTOTYPE: $ 1090 PROTOTYPE: $
709 CODE: 1091 CODE:
710 max_outstanding = maxreqs; 1092 max_outstanding = maxreqs;
711 1093
712void 1094void
1095aio_wd (SV8 *pathname, SV *callback=&PL_sv_undef)
1096 PPCODE:
1097{
1098 dREQ;
1099
1100 req->type = EIO_WD_OPEN;
1101 req_set_path1 (req, pathname);
1102
1103 REQ_SEND;
1104}
1105
1106void
713aio_open (SV8 *pathname, int flags, int mode, SV *callback=&PL_sv_undef) 1107aio_open (SV8 *pathname, int flags, int mode, SV *callback=&PL_sv_undef)
714 PROTOTYPE: $$$;$
715 PPCODE: 1108 PPCODE:
716{ 1109{
717 dREQ; 1110 dREQ;
718 1111
719 req->type = EIO_OPEN; 1112 req->type = EIO_OPEN;
720 req->sv1 = newSVsv (pathname); 1113 req_set_path1 (req, pathname);
721 req->ptr1 = SvPVbyte_nolen (req->sv1);
722 req->int1 = flags; 1114 req->int1 = flags;
723 req->int2 = mode; 1115 req->int2 = mode;
724 1116
725 REQ_SEND; 1117 REQ_SEND;
726} 1118}
727 1119
728void 1120void
729aio_fsync (SV *fh, SV *callback=&PL_sv_undef) 1121aio_fsync (SV *fh, SV *callback=&PL_sv_undef)
730 PROTOTYPE: $;$
731 ALIAS: 1122 ALIAS:
732 aio_fsync = EIO_FSYNC 1123 aio_fsync = EIO_FSYNC
733 aio_fdatasync = EIO_FDATASYNC 1124 aio_fdatasync = EIO_FDATASYNC
1125 aio_syncfs = EIO_SYNCFS
734 PPCODE: 1126 PPCODE:
735{ 1127{
736 int fd = s_fileno_croak (fh, 0); 1128 int fd = s_fileno_croak (fh, 0);
737 dREQ; 1129 dREQ;
738 1130
743 REQ_SEND (req); 1135 REQ_SEND (req);
744} 1136}
745 1137
746void 1138void
747aio_sync_file_range (SV *fh, off_t offset, size_t nbytes, UV flags, SV *callback=&PL_sv_undef) 1139aio_sync_file_range (SV *fh, off_t offset, size_t nbytes, UV flags, SV *callback=&PL_sv_undef)
748 PROTOTYPE: $$$$;$
749 PPCODE: 1140 PPCODE:
750{ 1141{
751 int fd = s_fileno_croak (fh, 0); 1142 int fd = s_fileno_croak (fh, 0);
752 dREQ; 1143 dREQ;
753 1144
760 1151
761 REQ_SEND (req); 1152 REQ_SEND (req);
762} 1153}
763 1154
764void 1155void
765aio_close (SV *fh, SV *callback=&PL_sv_undef) 1156aio_fallocate (SV *fh, int mode, off_t offset, size_t len, SV *callback=&PL_sv_undef)
766 PROTOTYPE: $;$
767 PPCODE: 1157 PPCODE:
768{ 1158{
769 static int close_pipe = -1; /* dummy fd to close fds via dup2 */
770 int fd = s_fileno_croak (fh, 0); 1159 int fd = s_fileno_croak (fh, 0);
771 dREQ; 1160 dREQ;
772 1161
773 if (close_pipe < 0) 1162 req->type = EIO_FALLOCATE;
1163 req->sv1 = newSVsv (fh);
1164 req->int1 = fd;
1165 req->int2 = mode;
1166 req->offs = offset;
1167 req->size = len;
1168
1169 REQ_SEND (req);
1170}
1171
1172void
1173aio_close (SV *fh, SV *callback=&PL_sv_undef)
1174 PPCODE:
1175{
1176 static int close_fd = -1; /* dummy fd to close fds via dup2 */
1177 int fd = s_fileno_croak (fh, 0);
1178 dREQ;
1179
1180 if (expect_false (close_fd < 0))
774 { 1181 {
775 int pipefd [2]; 1182 int pipefd [2];
776 1183
1184 if (
1185#ifdef _WIN32
1186 _pipe (pipefd, 1, _O_BINARY) < 0
1187#else
777 if (pipe (pipefd) < 0 1188 pipe (pipefd) < 0
778 || close (pipefd [1]) < 0
779 || fcntl (pipefd [0], F_SETFD, FD_CLOEXEC) < 0) 1189 || fcntl (pipefd [0], F_SETFD, FD_CLOEXEC) < 0
1190#endif
1191 || close (pipefd [1]) < 0
1192 )
780 abort (); /*D*/ 1193 abort (); /*D*/
781 1194
782 close_pipe = pipefd [0]; 1195 close_fd = pipefd [0];
783 } 1196 }
784 1197
785 req->type = EIO_DUP2; 1198 req->type = EIO_DUP2;
786 req->int1 = close_pipe; 1199 req->int1 = close_fd;
787 req->sv2 = newSVsv (fh); 1200 req->sv2 = newSVsv (fh);
788 req->int2 = fd; 1201 req->int2 = fd;
789 1202
790 REQ_SEND (req); 1203 REQ_SEND (req);
791} 1204}
793void 1206void
794aio_read (SV *fh, SV *offset, SV *length, SV8 *data, IV dataoffset, SV *callback=&PL_sv_undef) 1207aio_read (SV *fh, SV *offset, SV *length, SV8 *data, IV dataoffset, SV *callback=&PL_sv_undef)
795 ALIAS: 1208 ALIAS:
796 aio_read = EIO_READ 1209 aio_read = EIO_READ
797 aio_write = EIO_WRITE 1210 aio_write = EIO_WRITE
798 PROTOTYPE: $$$$$;$
799 PPCODE: 1211 PPCODE:
800{ 1212{
801 STRLEN svlen; 1213 STRLEN svlen;
802 int fd = s_fileno_croak (fh, ix == EIO_WRITE); 1214 int fd = s_fileno_croak (fh, ix == EIO_WRITE);
803 char *svptr = SvPVbyte (data, svlen); 1215 char *svptr = SvPVbyte (data, svlen);
843 REQ_SEND; 1255 REQ_SEND;
844 } 1256 }
845} 1257}
846 1258
847void 1259void
848aio_readlink (SV8 *path, SV *callback=&PL_sv_undef) 1260aio_readlink (SV8 *pathname, SV *callback=&PL_sv_undef)
849 PROTOTYPE: $$;$ 1261 ALIAS:
1262 aio_readlink = EIO_READLINK
1263 aio_realpath = EIO_REALPATH
850 PPCODE: 1264 PPCODE:
851{ 1265{
852 SV *data;
853 dREQ; 1266 dREQ;
854 1267
855 req->type = EIO_READLINK; 1268 req->type = ix;
856 req->sv1 = newSVsv (path); 1269 req_set_path1 (req, pathname);
857 req->ptr1 = SvPVbyte_nolen (req->sv1);
858 1270
859 REQ_SEND; 1271 REQ_SEND;
860} 1272}
861 1273
862void 1274void
863aio_sendfile (SV *out_fh, SV *in_fh, off_t in_offset, size_t length, SV *callback=&PL_sv_undef) 1275aio_sendfile (SV *out_fh, SV *in_fh, off_t in_offset, size_t length, SV *callback=&PL_sv_undef)
864 PROTOTYPE: $$$$;$
865 PPCODE: 1276 PPCODE:
866{ 1277{
867 int ifd = s_fileno_croak (in_fh , 0); 1278 int ifd = s_fileno_croak (in_fh , 0);
868 int ofd = s_fileno_croak (out_fh, 1); 1279 int ofd = s_fileno_croak (out_fh, 1);
869 dREQ; 1280 dREQ;
879 REQ_SEND; 1290 REQ_SEND;
880} 1291}
881 1292
882void 1293void
883aio_readahead (SV *fh, off_t offset, size_t length, SV *callback=&PL_sv_undef) 1294aio_readahead (SV *fh, off_t offset, size_t length, SV *callback=&PL_sv_undef)
884 PROTOTYPE: $$$;$
885 PPCODE: 1295 PPCODE:
886{ 1296{
887 int fd = s_fileno_croak (fh, 0); 1297 int fd = s_fileno_croak (fh, 0);
888 dREQ; 1298 dREQ;
889 1299
904 aio_statvfs = EIO_STATVFS 1314 aio_statvfs = EIO_STATVFS
905 PPCODE: 1315 PPCODE:
906{ 1316{
907 dREQ; 1317 dREQ;
908 1318
909 req->sv1 = newSVsv (fh_or_path); 1319 req_set_fh_or_path (req, ix, ix == EIO_STATVFS ? EIO_FSTATVFS : EIO_FSTAT, fh_or_path);
910
911 if (SvPOK (req->sv1))
912 {
913 req->type = ix;
914 req->ptr1 = SvPVbyte_nolen (req->sv1);
915 }
916 else
917 {
918 req->type = ix == EIO_STATVFS ? EIO_FSTATVFS : EIO_FSTAT;
919 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
920 }
921 1320
922 REQ_SEND; 1321 REQ_SEND;
923} 1322}
1323
1324UV
1325major (UV dev)
1326 ALIAS:
1327 minor = 1
1328 CODE:
1329 RETVAL = ix ? major (dev) : minor (dev);
1330 OUTPUT:
1331 RETVAL
1332
1333UV
1334makedev (UV maj, UV min)
1335 CODE:
1336 RETVAL = makedev (maj, min);
1337 OUTPUT:
1338 RETVAL
924 1339
925void 1340void
926aio_utime (SV8 *fh_or_path, SV *atime, SV *mtime, SV *callback=&PL_sv_undef) 1341aio_utime (SV8 *fh_or_path, SV *atime, SV *mtime, SV *callback=&PL_sv_undef)
927 PPCODE: 1342 PPCODE:
928{ 1343{
929 dREQ; 1344 dREQ;
930 1345
931 req->nv1 = SvOK (atime) ? SvNV (atime) : -1.; 1346 req->nv1 = SvOK (atime) ? SvNV (atime) : -1.;
932 req->nv2 = SvOK (mtime) ? SvNV (mtime) : -1.; 1347 req->nv2 = SvOK (mtime) ? SvNV (mtime) : -1.;
933 req->sv1 = newSVsv (fh_or_path); 1348 req_set_fh_or_path (req, EIO_UTIME, EIO_FUTIME, fh_or_path);
934
935 if (SvPOK (req->sv1))
936 {
937 req->type = EIO_UTIME;
938 req->ptr1 = SvPVbyte_nolen (req->sv1);
939 }
940 else
941 {
942 req->type = EIO_FUTIME;
943 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
944 }
945 1349
946 REQ_SEND; 1350 REQ_SEND;
947} 1351}
948 1352
949void 1353void
950aio_truncate (SV8 *fh_or_path, SV *offset, SV *callback=&PL_sv_undef) 1354aio_truncate (SV8 *fh_or_path, SV *offset, SV *callback=&PL_sv_undef)
951 PPCODE: 1355 PPCODE:
952{ 1356{
953 dREQ; 1357 dREQ;
954 1358
955 req->sv1 = newSVsv (fh_or_path);
956 req->offs = SvOK (offset) ? SvVAL64 (offset) : -1; 1359 req->offs = SvOK (offset) ? SvVAL64 (offset) : -1;
957 1360 req_set_fh_or_path (req, EIO_TRUNCATE, EIO_FTRUNCATE, fh_or_path);
958 if (SvPOK (req->sv1))
959 {
960 req->type = EIO_TRUNCATE;
961 req->ptr1 = SvPVbyte_nolen (req->sv1);
962 }
963 else
964 {
965 req->type = EIO_FTRUNCATE;
966 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
967 }
968 1361
969 REQ_SEND; 1362 REQ_SEND;
970} 1363}
971 1364
972void 1365void
973aio_chmod (SV8 *fh_or_path, int mode, SV *callback=&PL_sv_undef) 1366aio_chmod (SV8 *fh_or_path, int mode, SV *callback=&PL_sv_undef)
974 ALIAS:
975 aio_chmod = EIO_CHMOD
976 aio_mkdir = EIO_MKDIR
977 PPCODE: 1367 PPCODE:
978{ 1368{
979 dREQ; 1369 dREQ;
980 1370
981 req->int2 = mode; 1371 req->int2 = mode;
982 req->sv1 = newSVsv (fh_or_path); 1372 req_set_fh_or_path (req, EIO_CHMOD, EIO_FCHMOD, fh_or_path);
983
984 if (SvPOK (req->sv1))
985 {
986 req->type = ix;
987 req->ptr1 = SvPVbyte_nolen (req->sv1);
988 }
989 else
990 {
991 req->type = EIO_FCHMOD;
992 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
993 }
994 1373
995 REQ_SEND; 1374 REQ_SEND;
996} 1375}
997 1376
998void 1377void
1001{ 1380{
1002 dREQ; 1381 dREQ;
1003 1382
1004 req->int2 = SvOK (uid) ? SvIV (uid) : -1; 1383 req->int2 = SvOK (uid) ? SvIV (uid) : -1;
1005 req->int3 = SvOK (gid) ? SvIV (gid) : -1; 1384 req->int3 = SvOK (gid) ? SvIV (gid) : -1;
1006 req->sv1 = newSVsv (fh_or_path); 1385 req_set_fh_or_path (req, EIO_CHOWN, EIO_FCHOWN, fh_or_path);
1007
1008 if (SvPOK (req->sv1))
1009 {
1010 req->type = EIO_CHOWN;
1011 req->ptr1 = SvPVbyte_nolen (req->sv1);
1012 }
1013 else
1014 {
1015 req->type = EIO_FCHOWN;
1016 req->int1 = PerlIO_fileno (IoIFP (sv_2io (fh_or_path)));
1017 }
1018 1386
1019 REQ_SEND; 1387 REQ_SEND;
1020} 1388}
1021 1389
1022void 1390void
1024 PPCODE: 1392 PPCODE:
1025{ 1393{
1026 dREQ; 1394 dREQ;
1027 1395
1028 req->type = EIO_READDIR; 1396 req->type = EIO_READDIR;
1029 req->sv1 = newSVsv (pathname);
1030 req->ptr1 = SvPVbyte_nolen (req->sv1);
1031 req->int1 = flags | EIO_READDIR_DENTS | EIO_READDIR_CUSTOM1; 1397 req->int1 = flags | EIO_READDIR_DENTS | EIO_READDIR_CUSTOM1;
1032 1398
1033 if (flags & EIO_READDIR_DENTS) 1399 if (flags & EIO_READDIR_DENTS)
1034 req->int1 |= EIO_READDIR_CUSTOM2; 1400 req->int1 |= EIO_READDIR_CUSTOM2;
1035 1401
1402 req_set_path1 (req, pathname);
1403
1036 REQ_SEND; 1404 REQ_SEND;
1405}
1406
1407void
1408aio_mkdir (SV8 *pathname, int mode, SV *callback=&PL_sv_undef)
1409 PPCODE:
1410{
1411 dREQ;
1412
1413 req->type = EIO_MKDIR;
1414 req->int2 = mode;
1415 req_set_path1 (req, pathname);
1416
1417 REQ_SEND;
1037} 1418}
1038 1419
1039void 1420void
1040aio_unlink (SV8 *pathname, SV *callback=&PL_sv_undef) 1421aio_unlink (SV8 *pathname, SV *callback=&PL_sv_undef)
1041 ALIAS: 1422 ALIAS:
1045 PPCODE: 1426 PPCODE:
1046{ 1427{
1047 dREQ; 1428 dREQ;
1048 1429
1049 req->type = ix; 1430 req->type = ix;
1050 req->sv1 = newSVsv (pathname); 1431 req_set_path1 (req, pathname);
1051 req->ptr1 = SvPVbyte_nolen (req->sv1);
1052 1432
1053 REQ_SEND; 1433 REQ_SEND;
1054} 1434}
1055 1435
1056void 1436void
1060 aio_symlink = EIO_SYMLINK 1440 aio_symlink = EIO_SYMLINK
1061 aio_rename = EIO_RENAME 1441 aio_rename = EIO_RENAME
1062 PPCODE: 1442 PPCODE:
1063{ 1443{
1064 dREQ; 1444 dREQ;
1445 eio_wd wd2 = 0;
1065 1446
1066 req->type = ix; 1447 req->type = ix;
1067 req->sv1 = newSVsv (oldpath); 1448 req_set_path1 (req, oldpath);
1068 req->ptr1 = SvPVbyte_nolen (req->sv1); 1449 req_set_path (req, newpath, &req->sv2, &req->sv4, &wd2, &req->ptr2);
1069 req->sv2 = newSVsv (newpath); 1450 req->int3 = (long)wd2;
1070 req->ptr2 = SvPVbyte_nolen (req->sv2);
1071 1451
1072 REQ_SEND; 1452 REQ_SEND;
1073} 1453}
1074 1454
1075void 1455void
1077 PPCODE: 1457 PPCODE:
1078{ 1458{
1079 dREQ; 1459 dREQ;
1080 1460
1081 req->type = EIO_MKNOD; 1461 req->type = EIO_MKNOD;
1082 req->sv1 = newSVsv (pathname);
1083 req->ptr1 = SvPVbyte_nolen (req->sv1);
1084 req->int2 = (mode_t)mode; 1462 req->int2 = (mode_t)mode;
1085 req->offs = dev; 1463 req->offs = dev;
1464 req_set_path1 (req, pathname);
1086 1465
1087 REQ_SEND; 1466 REQ_SEND;
1088} 1467}
1089 1468
1090void 1469void
1091aio_mtouch (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, int flags = 0, SV *callback=&PL_sv_undef) 1470aio_mtouch (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, int flags = 0, SV *callback=&PL_sv_undef)
1092 ALIAS: 1471 ALIAS:
1093 aio_mtouch = EIO_MTOUCH 1472 aio_mtouch = EIO_MTOUCH
1094 aio_msync = EIO_MSYNC 1473 aio_msync = EIO_MSYNC
1095 PROTOTYPE: $$$$;$
1096 PPCODE: 1474 PPCODE:
1097{ 1475{
1098 STRLEN svlen; 1476 STRLEN svlen;
1477 char *svptr = SvPVbyte (data, svlen);
1099 UV len = SvUV (length); 1478 UV len = SvUV (length);
1100 char *svptr = SvPVbyte (data, svlen);
1101 1479
1102 if (offset < 0) 1480 if (offset < 0)
1103 offset += svlen; 1481 offset += svlen;
1104 1482
1105 if (offset < 0 || offset > svlen) 1483 if (offset < 0 || offset > svlen)
1110 1488
1111 { 1489 {
1112 dREQ; 1490 dREQ;
1113 1491
1114 req->type = ix; 1492 req->type = ix;
1115 req->size = len;
1116 req->sv2 = SvREFCNT_inc (data); 1493 req->sv2 = SvREFCNT_inc (data);
1117 req->ptr2 = (char *)svptr + offset; 1494 req->ptr2 = (char *)svptr + offset;
1495 req->size = len;
1118 req->int1 = flags; 1496 req->int1 = flags;
1119 1497
1120 REQ_SEND; 1498 REQ_SEND;
1121 } 1499 }
1122} 1500}
1123 1501
1124void 1502void
1503aio_mlock (SV8 *data, IV offset = 0, SV *length = &PL_sv_undef, SV *callback=&PL_sv_undef)
1504 PPCODE:
1505{
1506 STRLEN svlen;
1507 char *svptr = SvPVbyte (data, svlen);
1508 UV len = SvUV (length);
1509
1510 if (offset < 0)
1511 offset += svlen;
1512
1513 if (offset < 0 || offset > svlen)
1514 croak ("offset outside of scalar");
1515
1516 if (!SvOK (length) || len + offset > svlen)
1517 len = svlen - offset;
1518
1519 {
1520 dREQ;
1521
1522 req->type = EIO_MLOCK;
1523 req->sv2 = SvREFCNT_inc (data);
1524 req->ptr2 = (char *)svptr + offset;
1525 req->size = len;
1526
1527 REQ_SEND;
1528 }
1529}
1530
1531void
1532aio_mlockall (IV flags, SV *callback=&PL_sv_undef)
1533 PPCODE:
1534{
1535 dREQ;
1536
1537 req->type = EIO_MLOCKALL;
1538 req->int1 = flags;
1539
1540 REQ_SEND;
1541}
1542
1543void
1125aio_busy (double delay, SV *callback=&PL_sv_undef) 1544aio_busy (double delay, SV *callback=&PL_sv_undef)
1126 PPCODE: 1545 PPCODE:
1127{ 1546{
1128 dREQ; 1547 dREQ;
1129 1548
1133 REQ_SEND; 1552 REQ_SEND;
1134} 1553}
1135 1554
1136void 1555void
1137aio_group (SV *callback=&PL_sv_undef) 1556aio_group (SV *callback=&PL_sv_undef)
1138 PROTOTYPE: ;$
1139 PPCODE: 1557 PPCODE:
1140{ 1558{
1141 dREQ; 1559 dREQ;
1142 1560
1143 req->type = EIO_GROUP; 1561 req->type = EIO_GROUP;
1160 REQ_SEND; 1578 REQ_SEND;
1161} 1579}
1162 1580
1163int 1581int
1164aioreq_pri (int pri = 0) 1582aioreq_pri (int pri = 0)
1165 PROTOTYPE: ;$
1166 CODE: 1583 CODE:
1167 RETVAL = next_pri; 1584 RETVAL = next_pri;
1168 if (items > 0) 1585 if (items > 0)
1169 { 1586 {
1170 if (pri < EIO_PRI_MIN) pri = EIO_PRI_MIN; 1587 if (pri < EIO_PRI_MIN) pri = EIO_PRI_MIN;
1182 if (nice > EIO_PRI_MAX) nice = EIO_PRI_MAX; 1599 if (nice > EIO_PRI_MAX) nice = EIO_PRI_MAX;
1183 next_pri = nice; 1600 next_pri = nice;
1184 1601
1185void 1602void
1186flush () 1603flush ()
1187 PROTOTYPE:
1188 CODE: 1604 CODE:
1189 while (eio_nreqs ()) 1605 while (eio_nreqs ())
1190 { 1606 {
1191 poll_wait (); 1607 poll_wait ();
1192 poll_cb (); 1608 poll_cb ();
1193 } 1609 }
1194 1610
1195int 1611int
1196poll() 1612poll ()
1197 PROTOTYPE:
1198 CODE: 1613 CODE:
1199 poll_wait (); 1614 poll_wait ();
1200 RETVAL = poll_cb (); 1615 RETVAL = poll_cb ();
1201 OUTPUT: 1616 OUTPUT:
1202 RETVAL 1617 RETVAL
1203 1618
1204int 1619int
1205poll_fileno() 1620poll_fileno ()
1206 PROTOTYPE:
1207 CODE: 1621 CODE:
1208 RETVAL = s_epipe_fd (&respipe); 1622 RETVAL = s_epipe_fd (&respipe);
1209 OUTPUT: 1623 OUTPUT:
1210 RETVAL 1624 RETVAL
1211 1625
1212int 1626int
1213poll_cb(...) 1627poll_cb (...)
1214 PROTOTYPE: 1628 PROTOTYPE:
1215 CODE: 1629 CODE:
1216 RETVAL = poll_cb (); 1630 RETVAL = poll_cb ();
1217 OUTPUT: 1631 OUTPUT:
1218 RETVAL 1632 RETVAL
1219 1633
1220void 1634void
1221poll_wait() 1635poll_wait ()
1222 PROTOTYPE:
1223 CODE: 1636 CODE:
1224 poll_wait (); 1637 poll_wait ();
1225 1638
1226int 1639int
1227nreqs() 1640nreqs ()
1228 PROTOTYPE:
1229 CODE: 1641 CODE:
1230 RETVAL = eio_nreqs (); 1642 RETVAL = eio_nreqs ();
1231 OUTPUT: 1643 OUTPUT:
1232 RETVAL 1644 RETVAL
1233 1645
1234int 1646int
1235nready() 1647nready ()
1236 PROTOTYPE:
1237 CODE: 1648 CODE:
1238 RETVAL = eio_nready (); 1649 RETVAL = eio_nready ();
1239 OUTPUT: 1650 OUTPUT:
1240 RETVAL 1651 RETVAL
1241 1652
1242int 1653int
1243npending() 1654npending ()
1244 PROTOTYPE:
1245 CODE: 1655 CODE:
1246 RETVAL = eio_npending (); 1656 RETVAL = eio_npending ();
1247 OUTPUT: 1657 OUTPUT:
1248 RETVAL 1658 RETVAL
1249 1659
1250int 1660int
1251nthreads() 1661nthreads ()
1252 PROTOTYPE:
1253 CODE: 1662 CODE:
1254 RETVAL = eio_nthreads (); 1663 RETVAL = eio_nthreads ();
1255 OUTPUT: 1664 OUTPUT:
1256 RETVAL 1665 RETVAL
1257 1666
1258int 1667int
1259fadvise (aio_rfd fh, off_t offset, off_t length, IV advice) 1668fadvise (aio_rfd fh, off_t offset, off_t length, IV advice)
1260 PROTOTYPE: $$$$
1261 CODE: 1669 CODE:
1262#if _XOPEN_SOURCE >= 600 && !NO_FADVISE
1263 RETVAL = posix_fadvise (fh, offset, length, advice); 1670 RETVAL = posix_fadvise (fh, offset, length, advice);
1264#else
1265 RETVAL = errno = ENOSYS;
1266#endif
1267 OUTPUT: 1671 OUTPUT:
1268 RETVAL 1672 RETVAL
1269 1673
1270ssize_t 1674IV
1271sendfile (aio_wfd ofh, aio_rfd ifh, off_t offset, size_t count) 1675sendfile (aio_wfd ofh, aio_rfd ifh, off_t offset, size_t count)
1272 PROTOTYPE: $$$$
1273 CODE: 1676 CODE:
1274 RETVAL = eio_sendfile_sync (ofh, ifh, offset, count); 1677 RETVAL = eio_sendfile_sync (ofh, ifh, offset, count);
1275 OUTPUT: 1678 OUTPUT:
1276 RETVAL 1679 RETVAL
1277 1680
1681void
1682mmap (SV *scalar, size_t length, int prot, int flags, SV *fh, off_t offset = 0)
1683 PPCODE:
1684 sv_unmagic (scalar, MMAP_MAGIC);
1685{
1686 int fd = SvOK (fh) ? s_fileno_croak (fh, flags & PROT_WRITE) : -1;
1687 void *addr = (void *)mmap (0, length, prot, flags, fd, offset);
1688 if (addr == (void *)-1)
1689 XSRETURN_NO;
1690
1691 sv_force_normal (scalar);
1692
1693 /* we store the length in mg_obj, as namlen is I32 :/ */
1694 sv_magicext (scalar, 0, MMAP_MAGIC, &mmap_vtbl, (char *)addr, 0)
1695 ->mg_obj = (SV *)length;
1696
1697 SvUPGRADE (scalar, SVt_PV); /* nop... */
1698
1699 if (!(prot & PROT_WRITE))
1700 SvREADONLY_on (scalar);
1701
1702 if (SvLEN (scalar))
1703 Safefree (SvPVX (scalar));
1704
1705 SvPVX (scalar) = (char *)addr;
1706 SvCUR_set (scalar, length);
1707 SvLEN_set (scalar, 0);
1708 SvPOK_only (scalar);
1709
1710 XSRETURN_YES;
1711}
1712
1713void
1714munmap (SV *scalar)
1715 CODE:
1716 sv_unmagic (scalar, MMAP_MAGIC);
1717
1278int 1718int
1279mlockall (int flags) 1719madvise (SV *scalar, off_t offset = 0, SV *length = &PL_sv_undef, IV advice_or_prot)
1280 PROTOTYPE: $ 1720 ALIAS:
1721 mprotect = 1
1281 CODE: 1722 CODE:
1723{
1724 STRLEN svlen;
1725 void *addr = SvPVbyte (scalar, svlen);
1726 size_t len = SvUV (length);
1727
1728 if (offset < 0)
1729 offset += svlen;
1730
1731 if (offset < 0 || offset > svlen)
1732 croak ("offset outside of scalar");
1733
1734 if (!SvOK (length) || len + offset > svlen)
1735 len = svlen - offset;
1736
1737 addr = (void *)(((intptr_t)addr) + offset);
1738 eio_page_align (&addr, &len);
1739
1740 switch (ix)
1741 {
1742 case 0: RETVAL = posix_madvise (addr, len, advice_or_prot); break;
1743 case 1: RETVAL = mprotect (addr, len, advice_or_prot); break;
1744 }
1745}
1746 OUTPUT:
1747 RETVAL
1748
1749int
1750munlock (SV *scalar, off_t offset = 0, SV *length = &PL_sv_undef)
1751 CODE:
1752{
1753 STRLEN svlen;
1754 void *addr = SvPVbyte (scalar, svlen);
1755 size_t len = SvUV (length);
1756
1757 if (offset < 0)
1758 offset += svlen;
1759
1760 if (offset < 0 || offset > svlen)
1761 croak ("offset outside of scalar");
1762
1763 if (!SvOK (length) || len + offset > svlen)
1764 len = svlen - offset;
1765
1766 addr = (void *)(((intptr_t)addr) + offset);
1767 eio_page_align (&addr, &len);
1282#if _POSIX_MEMLOCK 1768#if _POSIX_MEMLOCK_RANGE
1283#if __GLIBC__ == 2 && __GLIBC_MINOR__ <= 7 1769 RETVAL = munlock (addr, len);
1284 extern int mallopt (int, int);
1285 mallopt (-6, 238); /* http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=473812 */
1286#endif
1287 mlockall (flags);
1288#else 1770#else
1289 RETVAL =-1; 1771 RETVAL = ((errno = ENOSYS), -1);
1290 errno = ENOSYS;
1291#endif 1772#endif
1773}
1292 OUTPUT: 1774 OUTPUT:
1293 RETVAL 1775 RETVAL
1294 1776
1295int 1777int
1296munlockall () 1778munlockall ()
1297 PROTOTYPE:
1298 CODE: 1779 CODE:
1299#if _POSIX_MEMLOCK 1780#if _POSIX_MEMLOCK
1300 munlockall (); 1781 munlockall ();
1301#else 1782#else
1302 RETVAL -1; 1783 RETVAL = -1;
1303 errno = ENOSYS; 1784 errno = ENOSYS;
1304#endif 1785#endif
1305 OUTPUT: 1786 OUTPUT:
1306 RETVAL 1787 RETVAL
1307 1788
1310 SvREFCNT_dec (on_next_submit); 1791 SvREFCNT_dec (on_next_submit);
1311 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0; 1792 on_next_submit = SvOK (cb) ? newSVsv (cb) : 0;
1312 1793
1313PROTOTYPES: DISABLE 1794PROTOTYPES: DISABLE
1314 1795
1796MODULE = IO::AIO PACKAGE = IO::AIO::WD
1797
1798BOOT:
1799{
1800 newCONSTSUB (aio_stash, "CWD" , newSVaio_wd (EIO_CWD ));
1801 newCONSTSUB (aio_stash, "INVALID_WD", newSVaio_wd (EIO_INVALID_WD));
1802}
1803
1804void
1805DESTROY (SV *self)
1806 CODE:
1807{
1808 aio_wd wd = SvAIO_WD (self);
1809#if HAVE_AT
1810 {
1811 SV *callback = &PL_sv_undef;
1812 dREQ; /* clobbers next_pri :/ */
1813 next_pri = req->pri; /* restore next_pri */
1814 req->pri = EIO_PRI_MAX; /* better use max. priority to conserve fds */
1815 req->type = EIO_WD_CLOSE;
1816 req->wd = wd;
1817 REQ_SEND;
1818 }
1819#else
1820 eio_wd_close_sync (wd);
1821#endif
1822}
1823
1315MODULE = IO::AIO PACKAGE = IO::AIO::REQ 1824MODULE = IO::AIO PACKAGE = IO::AIO::REQ
1316 1825
1317void 1826void
1318cancel (aio_req_ornot req) 1827cancel (aio_req_ornot req)
1319 CODE: 1828 CODE:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines