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

Comparing Linux-AIO/AIO.xs (file contents):
Revision 1.15 by root, Sat May 18 21:48:36 2002 UTC vs.
Revision 1.33 by root, Wed Aug 17 16:57:53 2005 UTC

1#define PERL_NO_GET_CONTEXT
2
1#include "EXTERN.h" 3#include "EXTERN.h"
2#include "perl.h" 4#include "perl.h"
3#include "XSUB.h" 5#include "XSUB.h"
4 6
5#include <sys/types.h> 7#include <sys/types.h>
6#include <sys/stat.h> 8#include <sys/stat.h>
7#include <unistd.h> 9#include <unistd.h>
8#include <fcntl.h> 10#include <fcntl.h>
9#include <signal.h> 11#include <signal.h>
10#include <sched.h> 12#include <sched.h>
13#include <endian.h>
11 14
12typedef void *InputStream; /* hack, but 5.6.1 is simply toooo old ;) */ 15typedef void *InputStream; /* hack, but 5.6.1 is simply toooo old ;) */
13typedef void *OutputStream; /* hack, but 5.6.1 is simply toooo old ;) */ 16typedef void *OutputStream; /* hack, but 5.6.1 is simply toooo old ;) */
14typedef void *InOutStream; /* hack, but 5.6.1 is simply toooo old ;) */ 17typedef void *InOutStream; /* hack, but 5.6.1 is simply toooo old ;) */
15 18
16#define STACKSIZE 1024 /* yeah */ 19#if __i386 || __amd64
20# define STACKSIZE ( 256 * sizeof (long))
21#elif __ia64
22# define STACKSIZE (8192 * sizeof (long))
23#else
24# define STACKSIZE ( 512 * sizeof (long))
25#endif
17 26
18enum { REQ_QUIT, REQ_OPEN, REQ_CLOSE, REQ_READ, REQ_WRITE, REQ_STAT, REQ_LSTAT, REQ_FSTAT}; 27enum {
28 REQ_QUIT,
29 REQ_OPEN, REQ_CLOSE,
30 REQ_READ, REQ_WRITE, REQ_READAHEAD,
31 REQ_STAT, REQ_LSTAT, REQ_FSTAT, REQ_UNLINK,
32 REQ_FSYNC, REQ_FDATASYNC,
33};
19 34
20typedef struct { 35typedef struct {
21 char stack[STACKSIZE]; 36 char stack[STACKSIZE];
22} aio_thread; 37} aio_thread;
23 38
24typedef struct { 39typedef struct aio_cb {
40 struct aio_cb *next;
41
25 int type; 42 int type;
26 aio_thread *thread; 43 aio_thread *thread;
27 44
28 int fd; 45 int fd;
29 off_t offset; 46 off_t offset;
33 int errorno; 50 int errorno;
34 SV *data, *callback; 51 SV *data, *callback;
35 void *dataptr; 52 void *dataptr;
36 STRLEN dataoffset; 53 STRLEN dataoffset;
37 54
38 struct stat64 *statdata; 55 Stat_t *statdata;
39} aio_cb; 56} aio_cb;
40 57
41typedef aio_cb *aio_req; 58typedef aio_cb *aio_req;
42 59
43static int started; 60static int started;
44static int nreqs; 61static int nreqs;
45static int reqpipe[2], respipe[2]; 62static int reqpipe[2], respipe[2];
46 63
64static aio_req qs, qe; /* queue start, queue end */
65
47static int aio_proc(void *arg); 66static int aio_proc(void *arg);
48 67
49static void 68static void
50start_thread(void) 69start_thread (void)
51{ 70{
52 aio_thread *thr; 71 aio_thread *thr;
53 72
54 New (0, thr, 1, aio_thread); 73 New (0, thr, 1, aio_thread);
55 74
56 if (clone (aio_proc, 75 if (clone (aio_proc,
57 &(thr->stack[STACKSIZE]), 76 &(thr->stack[STACKSIZE - 16]),
58 CLONE_VM|CLONE_FS|CLONE_FILES|CLONE_SIGHAND, 77 CLONE_VM|CLONE_FS|CLONE_FILES,
59 thr) >= 0) 78 thr) >= 0)
60 started++; 79 started++;
61 else 80 else
62 Safefree (thr); 81 Safefree (thr);
63} 82}
64 83
65static void 84static void
85send_reqs (void)
86{
87 /* this write is atomic */
88 while (qs && write (reqpipe[1], &qs, sizeof qs) == sizeof qs)
89 {
90 qs = qs->next;
91 if (!qs) qe = 0;
92 }
93}
94
95static void
96send_req (aio_req req)
97{
98 nreqs++;
99 req->next = 0;
100
101 if (qe)
102 {
103 qe->next = req;
104 qe = req;
105 }
106 else
107 qe = qs = req;
108
109 send_reqs ();
110}
111
112static void
66end_thread(void) 113end_thread (void)
67{ 114{
68 aio_req req; 115 aio_req req;
69 New (0, req, 1, aio_cb); 116 New (0, req, 1, aio_cb);
70 req->type = REQ_QUIT; 117 req->type = REQ_QUIT;
71 write (reqpipe[1], &req, sizeof (aio_req)); 118
119 send_req (req);
72} 120}
73 121
74static void 122static void
75send_req (aio_req req) 123read_write (pTHX_
76{
77 nreqs++;
78 write (reqpipe[1], &req, sizeof (aio_req));
79}
80
81static void
82read_write (pTHX_ int dowrite, int fd, off_t offset, size_t length, 124 int dowrite, int fd, off_t offset, size_t length,
83 SV *data, STRLEN dataoffset, SV*callback) 125 SV *data, STRLEN dataoffset, SV *callback)
84{ 126{
85 aio_req req; 127 aio_req req;
86 STRLEN svlen; 128 STRLEN svlen;
87 char *svptr = SvPV (data, svlen); 129 char *svptr = SvPV (data, svlen);
88 130
124 req->callback = SvREFCNT_inc (callback); 166 req->callback = SvREFCNT_inc (callback);
125 167
126 send_req (req); 168 send_req (req);
127} 169}
128 170
171static void
172poll_wait ()
173{
174 if (!nreqs)
175 return;
176
177 fd_set rfd;
178 FD_ZERO(&rfd);
179 FD_SET(respipe[0], &rfd);
180
181 select (respipe[0] + 1, &rfd, 0, 0, 0);
182}
183
129static int 184static int
130poll_cb (pTHX) 185poll_cb (pTHX)
131{ 186{
132 dSP; 187 dSP;
133 int count = 0; 188 int count = 0;
134 aio_req req; 189 aio_req req;
135 190
136 while (read (respipe[0], (void *)&req, sizeof (req)) == sizeof (req)) 191 while (read (respipe[0], (void *)&req, sizeof (req)) == sizeof (req))
137 { 192 {
193 nreqs--;
194
138 if (req->type == REQ_QUIT) 195 if (req->type == REQ_QUIT)
139 { 196 {
140 Safefree (req->thread); 197 Safefree (req->thread);
141 started--; 198 started--;
142 } 199 }
145 int errorno = errno; 202 int errorno = errno;
146 errno = req->errorno; 203 errno = req->errorno;
147 204
148 if (req->type == REQ_READ) 205 if (req->type == REQ_READ)
149 SvCUR_set (req->data, req->dataoffset 206 SvCUR_set (req->data, req->dataoffset
150 + req->result > 0 ? req->result : 0); 207 + (req->result > 0 ? req->result : 0));
151 208
152 if (req->data) 209 if (req->data)
153 SvREFCNT_dec (req->data); 210 SvREFCNT_dec (req->data);
154 211
155 if (req->type == REQ_STAT || req->type == REQ_LSTAT || req->type == REQ_FSTAT) 212 if (req->type == REQ_STAT || req->type == REQ_LSTAT || req->type == REQ_FSTAT)
156 { 213 {
157 PL_laststype = req->type == REQ_LSTAT ? OP_LSTAT : OP_STAT; 214 PL_laststype = req->type == REQ_LSTAT ? OP_LSTAT : OP_STAT;
158 PL_laststatval = req->result; 215 PL_laststatval = req->result;
159 PL_statcache.st_dev = req->statdata->st_dev; 216 PL_statcache = *(req->statdata);
160 PL_statcache.st_ino = req->statdata->st_ino;
161 PL_statcache.st_mode = req->statdata->st_mode;
162 PL_statcache.st_nlink = req->statdata->st_nlink;
163 PL_statcache.st_uid = req->statdata->st_uid;
164 PL_statcache.st_gid = req->statdata->st_gid;
165 PL_statcache.st_rdev = req->statdata->st_rdev;
166 PL_statcache.st_size = req->statdata->st_size;
167 PL_statcache.st_atime = req->statdata->st_atime;
168 PL_statcache.st_mtime = req->statdata->st_mtime;
169 PL_statcache.st_ctime = req->statdata->st_ctime;
170 PL_statcache.st_blksize = req->statdata->st_blksize;
171 PL_statcache.st_blocks = req->statdata->st_blocks;
172 217
173 Safefree (req->statdata); 218 Safefree (req->statdata);
174 } 219 }
175 220
176 PUSHMARK (SP); 221 PUSHMARK (SP);
181 226
182 if (req->callback) 227 if (req->callback)
183 SvREFCNT_dec (req->callback); 228 SvREFCNT_dec (req->callback);
184 229
185 errno = errorno; 230 errno = errorno;
186 nreqs--;
187 count++; 231 count++;
188 } 232 }
189 233
190 Safefree (req); 234 Safefree (req);
191 } 235 }
192 236
237 if (qs)
238 send_reqs ();
239
193 return count; 240 return count;
194} 241}
195 242
196static sigset_t fullsigset; 243static sigset_t fullsigset;
197 244
198#undef errno 245#undef errno
246#include <linux/unistd.h>
247#include <linux/types.h>
248#include <sys/prctl.h>
249
250#if __alpha || __ia64 || __hppa || __v850__
251# define stat kernelstat
252# define stat64 kernelstat64
199#include <asm/unistd.h> 253# include <asm/stat.h>
254# undef stat
255# undef stat64
256#else
257# define kernelstat stat
258# define kernelstat64 stat64
259#endif
260
261#define COPY_STATDATA \
262 req->statdata->st_dev = statdata.st_dev; \
263 req->statdata->st_ino = statdata.st_ino; \
264 req->statdata->st_mode = statdata.st_mode; \
265 req->statdata->st_nlink = statdata.st_nlink; \
266 req->statdata->st_uid = statdata.st_uid; \
267 req->statdata->st_gid = statdata.st_gid; \
268 req->statdata->st_rdev = statdata.st_rdev; \
269 req->statdata->st_size = statdata.st_size; \
270 req->statdata->st_atime = statdata.st_atime; \
271 req->statdata->st_mtime = statdata.st_mtime; \
272 req->statdata->st_ctime = statdata.st_ctime; \
273 req->statdata->st_blksize = statdata.st_blksize; \
274 req->statdata->st_blocks = statdata.st_blocks; \
200 275
201static int 276static int
202aio_proc(void *thr_arg) 277aio_proc (void *thr_arg)
203{ 278{
204 aio_thread *thr = thr_arg; 279 aio_thread *thr = thr_arg;
205 aio_req req; 280 aio_req req;
206 int errno; 281 int errno;
207 282
208 /* this is very much x86 and kernel-specific :(:(:( */ 283 /* this is very much kernel-specific :(:(:( */
209 /* we rely on gcc's ability to create closures. */ 284 /* we rely on gcc's ability to create closures. */
210 _syscall3(int,read,int,fd,char *,buf,size_t,count) 285 _syscall3(__kernel_size_t, read , unsigned int, fd, char *, buf, __kernel_size_t, count)
211 _syscall3(int,write,int,fd,char *,buf,size_t,count) 286 _syscall3(__kernel_size_t, write, unsigned int, fd, char *, buf, __kernel_size_t, count)
212 287
213 _syscall3(int,open,char *,pathname,int,flags,mode_t,mode) 288 _syscall3(long, open, char *, pathname, int, flags, int, mode)
214 _syscall1(int,close,int,fd) 289 _syscall1(long, close, unsigned int, fd)
290 _syscall1(long, unlink, char *, filename);
291 _syscall1(long, fsync, unsigned int, fd);
215 292
216 _syscall5(int,pread,int,fd,char *,buf,size_t,count,unsigned int,offset_lo,unsigned int,offset_hi) 293#ifndef __NR_fdatasync
217 _syscall5(int,pwrite,int,fd,char *,buf,size_t,count,unsigned int,offset_lo,unsigned int,offset_hi) 294# define __NR_fdatasync __NR_fsync
295#endif
296 _syscall1(long, fdatasync, unsigned int, fd);
218 297
298#if BYTE_ORDER == LITTLE_ENDIAN
299# define LOFF_ARG(off) (off & 0xffffffff), (off >> 32)
300#elif BYTE_ORDER == BIG_ENDIAN
301# define LOFF_ARG(off) (off >> 32), (off & 0xffffffff)
302#endif
303
304#ifndef __NR_pread64
305# define __NR_pread64 __NR_pread
306# define __NR_pwrite64 __NR_write
307#endif
308 _syscall5(__kernel_ssize_t, pread64 , unsigned int, fd, char *, buf,
309 __kernel_size_t, count, unsigned int, offset_lh, unsigned int, offset_hl)
310 _syscall5(__kernel_ssize_t, pwrite64, unsigned int, fd, char *, buf,
311 __kernel_size_t, count, unsigned int, offset_lh, unsigned int, offset_hl)
312 _syscall4(long, readahead, unsigned int, fd, unsigned int, offset_lh, unsigned int, offset_hl, __kernel_size_t, count);
313
314#if __NR_stat64
219 _syscall2(int,stat64, const char *, filename, struct stat64 *, buf) 315 _syscall2(long, stat64 , const char *, filename, struct kernelstat64 *, buf)
220 _syscall2(int,lstat64, const char *, filename, struct stat64 *, buf) 316 _syscall2(long, lstat64, const char *, filename, struct kernelstat64 *, buf)
221 _syscall2(int,fstat64, int, fd, struct stat64 *, buf) 317 _syscall2(long, fstat64, int , fd , struct kernelstat64 *, buf)
318#elif __NR_stat
319 _syscall2(long, stat , const char *, filename, struct kernelstat *, buf)
320 _syscall2(long, lstat, const char *, filename, struct kernelstat *, buf)
321 _syscall2(long, fstat, int , fd , struct kernelstat *, buf)
322#else
323# error "neither stat64 nor stat defined"
324#endif
222 325
326 /* the following two calls might clobber errno */
223 sigprocmask (SIG_SETMASK, &fullsigset, 0); 327 sigprocmask (SIG_SETMASK, &fullsigset, 0);
328 prctl (PR_SET_PDEATHSIG, SIGKILL);
224 329
225 /* then loop */ 330 /* then loop */
226 while (read (reqpipe[0], (void *)&req, sizeof (req)) == sizeof (req)) 331 while (read (reqpipe[0], (void *)&req, sizeof (req)) == sizeof (req))
227 { 332 {
228 req->thread = thr; 333 req->thread = thr;
229 errno = 0; /* strictly unnecessary */ 334 errno = 0; /* strictly unnecessary */
230 335
231 if (req->type == REQ_READ) 336 switch (req->type)
232 req->result = pread (req->fd, req->dataptr, req->length, req->offset & 0xffffffff, req->offset >> 32);
233 else if (req->type == REQ_WRITE)
234 req->result = pwrite(req->fd, req->dataptr, req->length, req->offset & 0xffffffff, req->offset >> 32);
235 else if (req->type == REQ_OPEN)
236 req->result = open (req->dataptr, req->fd, req->mode);
237 else if (req->type == REQ_CLOSE)
238 req->result = close (req->fd);
239 else if (req->type == REQ_STAT)
240 req->result = stat64 (req->dataptr, req->statdata);
241 else if (req->type == REQ_LSTAT)
242 req->result = lstat64 (req->dataptr, req->statdata);
243 else if (req->type == REQ_FSTAT)
244 req->result = fstat64 (req->fd, req->statdata);
245 else
246 { 337 {
338 case REQ_READ: req->result = pread64 (req->fd, req->dataptr, req->length, LOFF_ARG (req->offset)); break;
339 case REQ_WRITE: req->result = pwrite64 (req->fd, req->dataptr, req->length, LOFF_ARG (req->offset)); break;
340 case REQ_READAHEAD: req->result = readahead (req->fd, LOFF_ARG (req->offset), req->length); break;
341
342#if __NR_stat64
343 struct kernelstat64 statdata;
344 case REQ_STAT: req->result = stat64 (req->dataptr, &statdata); COPY_STATDATA; break;
345 case REQ_LSTAT: req->result = lstat64 (req->dataptr, &statdata); COPY_STATDATA; break;
346 case REQ_FSTAT: req->result = fstat64 (req->fd , &statdata); COPY_STATDATA; break;
347#else
348 struct kernelstat statdata;
349 case REQ_STAT: req->result = stat (req->dataptr, &statdata); COPY_STATDATA; break;
350 case REQ_LSTAT: req->result = lstat (req->dataptr, &statdata); COPY_STATDATA; break;
351 case REQ_FSTAT: req->result = fstat (req->fd , &statdata); COPY_STATDATA; break;
352#endif
353
354 case REQ_OPEN: req->result = open (req->dataptr, req->fd, req->mode); break;
355 case REQ_CLOSE: req->result = close (req->fd); break;
356 case REQ_UNLINK: req->result = unlink (req->dataptr); break;
357
358 case REQ_FSYNC: req->result = fsync (req->fd); break;
359 case REQ_FDATASYNC: req->result = fdatasync (req->fd); break;
360
361 case REQ_QUIT:
247 write (respipe[1], (void *)&req, sizeof (req)); 362 write (respipe[1], (void *)&req, sizeof (req));
363 return 0;
364
365 default:
366 req->result = ENOSYS;
248 break; 367 break;
249 } 368 }
250 369
251 req->errorno = errno; 370 req->errorno = errno;
252 write (respipe[1], (void *)&req, sizeof (req)); 371 write (respipe[1], (void *)&req, sizeof (req));
253 } 372 }
265 sigdelset (&fullsigset, SIGABRT); 384 sigdelset (&fullsigset, SIGABRT);
266 sigdelset (&fullsigset, SIGINT); 385 sigdelset (&fullsigset, SIGINT);
267 386
268 if (pipe (reqpipe) || pipe (respipe)) 387 if (pipe (reqpipe) || pipe (respipe))
269 croak ("unable to initialize request or result pipe"); 388 croak ("unable to initialize request or result pipe");
389
390 if (fcntl (reqpipe[1], F_SETFL, O_NONBLOCK))
391 croak ("cannot set result pipe to nonblocking mode");
270 392
271 if (fcntl (respipe[0], F_SETFL, O_NONBLOCK)) 393 if (fcntl (respipe[0], F_SETFL, O_NONBLOCK))
272 croak ("cannot set result pipe to nonblocking mode"); 394 croak ("cannot set result pipe to nonblocking mode");
273} 395}
274 396
283void 405void
284max_parallel(nthreads) 406max_parallel(nthreads)
285 int nthreads 407 int nthreads
286 PROTOTYPE: $ 408 PROTOTYPE: $
287 CODE: 409 CODE:
410{
288 int cur = started; 411 int cur = started;
289 while (cur > nthreads) 412 while (cur > nthreads)
290 { 413 {
291 end_thread (); 414 end_thread ();
292 cur--; 415 cur--;
293 } 416 }
294 417
295 while (started > nthreads) 418 while (started > nthreads)
296 { 419 {
297 fd_set rfd; 420 poll_wait ();
298 FD_ZERO(&rfd);
299 FD_SET(respipe[0], &rfd);
300
301 select (respipe[0] + 1, &rfd, 0, 0, 0);
302 poll_cb (); 421 poll_cb (aTHX);
303 } 422 }
423}
304 424
305void 425void
306aio_open(pathname,flags,mode,callback) 426aio_open(pathname,flags,mode,callback)
307 SV * pathname 427 SV * pathname
308 int flags 428 int flags
309 int mode 429 int mode
310 SV * callback 430 SV * callback
311 PROTOTYPE: $$$$ 431 PROTOTYPE: $$$$
312 CODE: 432 CODE:
433{
313 aio_req req; 434 aio_req req;
314 435
315 Newz (0, req, 1, aio_cb); 436 Newz (0, req, 1, aio_cb);
316 437
317 if (!req) 438 if (!req)
323 req->fd = flags; 444 req->fd = flags;
324 req->mode = mode; 445 req->mode = mode;
325 req->callback = SvREFCNT_inc (callback); 446 req->callback = SvREFCNT_inc (callback);
326 447
327 send_req (req); 448 send_req (req);
449}
328 450
329void 451void
330aio_close(fh,callback) 452aio_close(fh,callback)
331 InputStream fh 453 InputStream fh
332 SV * callback 454 SV * callback
333 PROTOTYPE: $$ 455 PROTOTYPE: $$
456 ALIAS:
457 aio_close = REQ_CLOSE
458 aio_fsync = REQ_FSYNC
459 aio_fdatasync = REQ_FDATASYNC
334 CODE: 460 CODE:
461{
335 aio_req req; 462 aio_req req;
336 463
337 Newz (0, req, 1, aio_cb); 464 Newz (0, req, 1, aio_cb);
338 465
339 if (!req) 466 if (!req)
340 croak ("out of memory during aio_req allocation"); 467 croak ("out of memory during aio_req allocation");
341 468
342 req->type = REQ_CLOSE; 469 req->type = ix;
343 req->fd = PerlIO_fileno (fh); 470 req->fd = PerlIO_fileno (fh);
344 req->callback = SvREFCNT_inc (callback); 471 req->callback = SvREFCNT_inc (callback);
345 472
346 send_req (req); 473 send_req (req);
474}
347 475
348void 476void
349aio_read(fh,offset,length,data,dataoffset,callback) 477aio_read(fh,offset,length,data,dataoffset,callback)
350 InputStream fh 478 InputStream fh
351 UV offset 479 UV offset
368 PROTOTYPE: $$$$$$ 496 PROTOTYPE: $$$$$$
369 CODE: 497 CODE:
370 read_write (aTHX_ 1, PerlIO_fileno (fh), offset, length, data, dataoffset, callback); 498 read_write (aTHX_ 1, PerlIO_fileno (fh), offset, length, data, dataoffset, callback);
371 499
372void 500void
501aio_readahead(fh,offset,length,callback)
502 InputStream fh
503 UV offset
504 IV length
505 SV * callback
506 PROTOTYPE: $$$$
507 CODE:
508{
509 aio_req req;
510
511 if (length < 0)
512 croak ("length must not be negative");
513
514 Newz (0, req, 1, aio_cb);
515
516 if (!req)
517 croak ("out of memory during aio_req allocation");
518
519 req->type = REQ_READAHEAD;
520 req->fd = PerlIO_fileno (fh);
521 req->offset = offset;
522 req->length = length;
523 req->callback = SvREFCNT_inc (callback);
524
525 send_req (req);
526}
527
528void
373aio_stat(fh_or_path,callback) 529aio_stat(fh_or_path,callback)
374 SV * fh_or_path 530 SV * fh_or_path
375 SV * callback 531 SV * callback
376 PROTOTYPE: $$ 532 PROTOTYPE: $$
377 ALIAS: 533 ALIAS:
378 aio_lstat = 1 534 aio_lstat = 1
379 CODE: 535 CODE:
536{
380 aio_req req; 537 aio_req req;
381 538
382 Newz (0, req, 1, aio_cb); 539 Newz (0, req, 1, aio_cb);
383 540
384 if (!req) 541 if (!req)
385 croak ("out of memory during aio_req allocation"); 542 croak ("out of memory during aio_req allocation");
386 543
387 New (0, req->statdata, 1, struct stat64); 544 New (0, req->statdata, 1, Stat_t);
388 545
389 if (!req->statdata) 546 if (!req->statdata)
390 croak ("out of memory during aio_req->statdata allocation"); 547 croak ("out of memory during aio_req->statdata allocation");
391 548
392 if (SvPOK (fh_or_path)) 549 if (SvPOK (fh_or_path))
402 } 559 }
403 560
404 req->callback = SvREFCNT_inc (callback); 561 req->callback = SvREFCNT_inc (callback);
405 562
406 send_req (req); 563 send_req (req);
564}
565
566void
567aio_unlink(pathname,callback)
568 SV * pathname
569 SV * callback
570 PROTOTYPE: $$
571 CODE:
572{
573 aio_req req;
574
575 Newz (0, req, 1, aio_cb);
576
577 if (!req)
578 croak ("out of memory during aio_req allocation");
579
580 req->type = REQ_UNLINK;
581 req->data = newSVsv (pathname);
582 req->dataptr = SvPV_nolen (req->data);
583 req->callback = SvREFCNT_inc (callback);
584
585 send_req (req);
586}
407 587
408int 588int
409poll_fileno() 589poll_fileno()
410 PROTOTYPE: 590 PROTOTYPE:
411 CODE: 591 CODE:
419 CODE: 599 CODE:
420 RETVAL = poll_cb (aTHX); 600 RETVAL = poll_cb (aTHX);
421 OUTPUT: 601 OUTPUT:
422 RETVAL 602 RETVAL
423 603
604void
605poll_wait()
606 PROTOTYPE:
607 CODE:
608 poll_wait ();
609
424int 610int
425nreqs() 611nreqs()
426 PROTOTYPE: 612 PROTOTYPE:
427 CODE: 613 CODE:
428 RETVAL = nreqs; 614 RETVAL = nreqs;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines