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

Comparing EV/EV.xs (file contents):
Revision 1.25 by root, Wed Oct 31 20:19:20 2007 UTC vs.
Revision 1.37 by root, Thu Nov 1 17:17:32 2007 UTC

3#include "XSUB.h" 3#include "XSUB.h"
4 4
5/*#include <netinet/in.h>*/ 5/*#include <netinet/in.h>*/
6 6
7#define TIMEOUT_NONE HUGE_VAL 7#define TIMEOUT_NONE HUGE_VAL
8#define HAVE_EPOLL 1
9 8
10#define EV_PROTOTYPES 1 9#define EV_PROTOTYPES 1
11#include "EV/EVAPI.h" 10#include "EV/EVAPI.h"
12 11
13#include "libev/ev.c" 12#include "libev/ev.c"
13#include "libev/event.h"
14#include "libev/event.c"
15
16#define DNS_USE_GETTIMEOFDAY_FOR_ID 1
17#define HAVE_STRUCT_IN6_ADDR 1
18#define HAVE_STRTOK_R 1
19#include "libev/evdns.c"
14 20
15typedef int Signal; 21typedef int Signal;
16 22
17static struct EVAPI evapi; 23static struct EVAPI evapi;
18 24
19static HV 25static HV
20 *stash_watcher, 26 *stash_watcher,
21 *stash_io, 27 *stash_io,
22 *stash_time,
23 *stash_timer, 28 *stash_timer,
24 *stash_periodic, 29 *stash_periodic,
25 *stash_signal, 30 *stash_signal,
26 *stash_idle, 31 *stash_idle,
27 *stash_prepare, 32 *stash_prepare,
31static int 36static int
32sv_signum (SV *sig) 37sv_signum (SV *sig)
33{ 38{
34 int signum; 39 int signum;
35 40
36 if (SvIV (sig) > 0) 41 SvGETMAGIC (sig);
37 return SvIV (sig);
38 42
39 for (signum = 1; signum < SIG_SIZE; ++signum) 43 for (signum = 1; signum < SIG_SIZE; ++signum)
40 if (strEQ (SvPV_nolen (sig), PL_sig_name [signum])) 44 if (strEQ (SvPV_nolen (sig), PL_sig_name [signum]))
41 return signum; 45 return signum;
42 46
47 if (SvIV (sig) > 0)
48 return SvIV (sig);
49
43 return -1; 50 return -1;
44} 51}
45 52
46///////////////////////////////////////////////////////////////////////////// 53/////////////////////////////////////////////////////////////////////////////
47// Event 54// Event
57 fh = SvRV (fh); 64 fh = SvRV (fh);
58 65
59 if (SvTYPE (fh) == SVt_PVGV) 66 if (SvTYPE (fh) == SVt_PVGV)
60 return PerlIO_fileno (IoIFP (sv_2io (fh))); 67 return PerlIO_fileno (IoIFP (sv_2io (fh)));
61 68
62 if (SvIOK (fh)) 69 if ((SvIV (fh) >= 0) && (SvIV (fh) < 0x7ffffff))
63 return SvIV (fh); 70 return SvIV (fh);
64 71
65 return -1; 72 return -1;
66} 73}
67 74
73 SvPOK_only (self); 80 SvPOK_only (self);
74 SvCUR_set (self, size); 81 SvCUR_set (self, size);
75 82
76 w = (struct ev_watcher *)SvPVX (self); 83 w = (struct ev_watcher *)SvPVX (self);
77 84
78 evw_init (w, e_cb); 85 ev_watcher_init (w, e_cb);
79 86
80 w->fh = 0; 87 w->fh = 0;
81 w->cb_sv = newSVsv (cb_sv); 88 w->cb_sv = newSVsv (cb_sv);
82 w->self = self; 89 w->self = self;
83 90
84 return (void *)w; 91 return (void *)w;
92}
93
94static void *
95e_destroy (void *w_)
96{
97 struct ev_watcher *w = w_;
98
99 SvREFCNT_dec (w->fh ); w->fh = 0;
100 SvREFCNT_dec (w->cb_sv); w->cb_sv = 0;
85} 101}
86 102
87static SV * 103static SV *
88e_bless (struct ev_watcher *w, HV *stash) 104e_bless (struct ev_watcher *w, HV *stash)
89{ 105{
146 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 162 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
147 SP = PL_stack_base + mark; PUTBACK; 163 SP = PL_stack_base + mark; PUTBACK;
148 } 164 }
149} 165}
150 166
151#if 0
152///////////////////////////////////////////////////////////////////////////// 167/////////////////////////////////////////////////////////////////////////////
153// DNS 168// DNS
154 169
155static void 170static void
156dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg) 171dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg)
198 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 213 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
199 } 214 }
200 215
201 LEAVE; 216 LEAVE;
202} 217}
203#endif
204 218
205#define CHECK_REPEAT(repeat) if (repeat < 0.) \ 219#define CHECK_REPEAT(repeat) if (repeat < 0.) \
206 croak (# repeat " value must be >= 0"); 220 croak (# repeat " value must be >= 0");
221
222#define CHECK_FD(fh,fd) if ((fd) < 0) \
223 croak ("illegal file descriptor or filehandle (either no attached file descriptor or illegal value): %s", SvPV_nolen (fh));
207 224
208///////////////////////////////////////////////////////////////////////////// 225/////////////////////////////////////////////////////////////////////////////
209// XS interface functions 226// XS interface functions
210 227
211MODULE = EV PACKAGE = EV PREFIX = ev_ 228MODULE = EV PACKAGE = EV PREFIX = ev_
242 259
243 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 260 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
244 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 261 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
245 262
246 stash_watcher = gv_stashpv ("EV::Watcher" , 1); 263 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
247 stash_io = gv_stashpv ("EV::IO" , 1); 264 stash_io = gv_stashpv ("EV::Io" , 1);
248 stash_time = gv_stashpv ("EV::Time" , 1);
249 stash_timer = gv_stashpv ("EV::Timer" , 1); 265 stash_timer = gv_stashpv ("EV::Timer" , 1);
250 stash_periodic = gv_stashpv ("EV::Periodic", 1); 266 stash_periodic = gv_stashpv ("EV::Periodic", 1);
251 stash_signal = gv_stashpv ("EV::Signal" , 1); 267 stash_signal = gv_stashpv ("EV::Signal" , 1);
252 stash_idle = gv_stashpv ("EV::Idle" , 1); 268 stash_idle = gv_stashpv ("EV::Idle" , 1);
253 stash_prepare = gv_stashpv ("EV::Prepare" , 1); 269 stash_prepare = gv_stashpv ("EV::Prepare" , 1);
267 evapi.method = &ev_method; 283 evapi.method = &ev_method;
268 evapi.loop_done = &ev_loop_done; 284 evapi.loop_done = &ev_loop_done;
269 evapi.time = ev_time; 285 evapi.time = ev_time;
270 evapi.loop = ev_loop; 286 evapi.loop = ev_loop;
271 evapi.once = ev_once; 287 evapi.once = ev_once;
272 evapi.io_start = evio_start; 288 evapi.io_start = ev_io_start;
273 evapi.io_stop = evio_stop; 289 evapi.io_stop = ev_io_stop;
274 evapi.timer_start = evtimer_start; 290 evapi.timer_start = ev_timer_start;
275 evapi.timer_stop = evtimer_stop; 291 evapi.timer_stop = ev_timer_stop;
276 evapi.timer_again = evtimer_again; 292 evapi.timer_again = ev_timer_again;
277 evapi.periodic_start = evperiodic_start; 293 evapi.periodic_start = ev_periodic_start;
278 evapi.periodic_stop = evperiodic_stop; 294 evapi.periodic_stop = ev_periodic_stop;
279 evapi.signal_start = evsignal_start; 295 evapi.signal_start = ev_signal_start;
280 evapi.signal_stop = evsignal_stop; 296 evapi.signal_stop = ev_signal_stop;
281 evapi.idle_start = evidle_start; 297 evapi.idle_start = ev_idle_start;
282 evapi.idle_stop = evidle_stop; 298 evapi.idle_stop = ev_idle_stop;
283 evapi.prepare_start = evprepare_start; 299 evapi.prepare_start = ev_prepare_start;
284 evapi.prepare_stop = evprepare_stop; 300 evapi.prepare_stop = ev_prepare_stop;
285 evapi.check_start = evcheck_start; 301 evapi.check_start = ev_check_start;
286 evapi.check_stop = evcheck_stop; 302 evapi.check_stop = ev_check_stop;
287 evapi.child_start = evchild_start; 303 evapi.child_start = ev_child_start;
288 evapi.child_stop = evchild_stop; 304 evapi.child_stop = ev_child_stop;
289 305
290 sv_setiv (sv, (IV)&evapi); 306 sv_setiv (sv, (IV)&evapi);
291 SvREADONLY_on (sv); 307 SvREADONLY_on (sv);
292 } 308 }
309
310 pthread_atfork (ev_fork_prepare, ev_fork_parent, ev_fork_child);
293} 311}
294 312
295NV ev_now () 313NV ev_now ()
296 CODE: 314 CODE:
297 RETVAL = ev_now; 315 RETVAL = ev_now;
316 334
317struct ev_io *io (SV *fh, int events, SV *cb) 335struct ev_io *io (SV *fh, int events, SV *cb)
318 ALIAS: 336 ALIAS:
319 io_ns = 1 337 io_ns = 1
320 CODE: 338 CODE:
339{
340 int fd = sv_fileno (fh);
341 CHECK_FD (fh, fd);
342
321 RETVAL = e_new (sizeof (struct ev_io), cb); 343 RETVAL = e_new (sizeof (struct ev_io), cb);
322 RETVAL->fh = newSVsv (fh); 344 RETVAL->fh = newSVsv (fh);
323 evio_set (RETVAL, sv_fileno (RETVAL->fh), events); 345 ev_io_set (RETVAL, fd, events);
324 if (!ix) evio_start (RETVAL); 346 if (!ix) ev_io_start (RETVAL);
347}
325 OUTPUT: 348 OUTPUT:
326 RETVAL 349 RETVAL
327 350
328struct ev_timer *timer (NV after, NV repeat, SV *cb) 351struct ev_timer *timer (NV after, NV repeat, SV *cb)
329 ALIAS: 352 ALIAS:
330 timer_ns = 1 353 timer_ns = 1
331 INIT: 354 INIT:
332 CHECK_REPEAT (repeat); 355 CHECK_REPEAT (repeat);
333 CODE: 356 CODE:
334 RETVAL = e_new (sizeof (struct ev_timer), cb); 357 RETVAL = e_new (sizeof (struct ev_timer), cb);
335 evtimer_set (RETVAL, after, repeat); 358 ev_timer_set (RETVAL, after, repeat);
336 if (!ix) evtimer_start (RETVAL); 359 if (!ix) ev_timer_start (RETVAL);
337 OUTPUT: 360 OUTPUT:
338 RETVAL 361 RETVAL
339 362
340struct ev_periodic *periodic (NV at, NV interval, SV *cb) 363struct ev_periodic *periodic (NV at, NV interval, SV *cb)
341 ALIAS: 364 ALIAS:
342 periodic_ns = 1 365 periodic_ns = 1
343 INIT: 366 INIT:
344 CHECK_REPEAT (interval); 367 CHECK_REPEAT (interval);
345 CODE: 368 CODE:
346 RETVAL = e_new (sizeof (struct ev_periodic), cb); 369 RETVAL = e_new (sizeof (struct ev_periodic), cb);
347 evperiodic_set (RETVAL, at, interval); 370 ev_periodic_set (RETVAL, at, interval);
348 if (!ix) evperiodic_start (RETVAL); 371 if (!ix) ev_periodic_start (RETVAL);
349 OUTPUT: 372 OUTPUT:
350 RETVAL 373 RETVAL
351 374
352struct ev_signal *signal (Signal signum, SV *cb) 375struct ev_signal *signal (Signal signum, SV *cb)
353 ALIAS: 376 ALIAS:
354 signal_ns = 1 377 signal_ns = 1
355 CODE: 378 CODE:
356 RETVAL = e_new (sizeof (struct ev_signal), cb); 379 RETVAL = e_new (sizeof (struct ev_signal), cb);
357 evsignal_set (RETVAL, signum); 380 ev_signal_set (RETVAL, signum);
358 if (!ix) evsignal_start (RETVAL); 381 if (!ix) ev_signal_start (RETVAL);
359 OUTPUT: 382 OUTPUT:
360 RETVAL 383 RETVAL
361 384
362struct ev_idle *idle (SV *cb) 385struct ev_idle *idle (SV *cb)
363 ALIAS: 386 ALIAS:
364 idle_ns = 1 387 idle_ns = 1
365 CODE: 388 CODE:
366 RETVAL = e_new (sizeof (struct ev_idle), cb); 389 RETVAL = e_new (sizeof (struct ev_idle), cb);
367 evidle_set (RETVAL); 390 ev_idle_set (RETVAL);
368 if (!ix) evidle_start (RETVAL); 391 if (!ix) ev_idle_start (RETVAL);
369 OUTPUT: 392 OUTPUT:
370 RETVAL 393 RETVAL
371 394
372struct ev_prepare *prepare (SV *cb) 395struct ev_prepare *prepare (SV *cb)
373 ALIAS: 396 ALIAS:
374 prepare_ns = 1 397 prepare_ns = 1
375 CODE: 398 CODE:
376 RETVAL = e_new (sizeof (struct ev_prepare), cb); 399 RETVAL = e_new (sizeof (struct ev_prepare), cb);
377 evprepare_set (RETVAL); 400 ev_prepare_set (RETVAL);
378 if (!ix) evprepare_start (RETVAL); 401 if (!ix) ev_prepare_start (RETVAL);
379 OUTPUT: 402 OUTPUT:
380 RETVAL 403 RETVAL
381 404
382struct ev_check *check (SV *cb) 405struct ev_check *check (SV *cb)
383 ALIAS: 406 ALIAS:
384 check_ns = 1 407 check_ns = 1
385 CODE: 408 CODE:
386 RETVAL = e_new (sizeof (struct ev_check), cb); 409 RETVAL = e_new (sizeof (struct ev_check), cb);
387 evcheck_set (RETVAL); 410 ev_check_set (RETVAL);
388 if (!ix) evcheck_start (RETVAL); 411 if (!ix) ev_check_start (RETVAL);
389 OUTPUT: 412 OUTPUT:
390 RETVAL 413 RETVAL
391 414
392struct ev_child *child (int pid, SV *cb) 415struct ev_child *child (int pid, SV *cb)
393 ALIAS: 416 ALIAS:
394 check_ns = 1 417 check_ns = 1
395 CODE: 418 CODE:
396 RETVAL = e_new (sizeof (struct ev_check), cb); 419 RETVAL = e_new (sizeof (struct ev_check), cb);
397 evchild_set (RETVAL, pid); 420 ev_child_set (RETVAL, pid);
398 if (!ix) evchild_start (RETVAL); 421 if (!ix) ev_child_start (RETVAL);
399 OUTPUT: 422 OUTPUT:
400 RETVAL 423 RETVAL
401 424
402 425
403PROTOTYPES: DISABLE 426PROTOTYPES: DISABLE
415 sv_setsv (w->cb_sv, new_cb); 438 sv_setsv (w->cb_sv, new_cb);
416} 439}
417 OUTPUT: 440 OUTPUT:
418 RETVAL 441 RETVAL
419 442
443void trigger (struct ev_watcher *w, int revents = EV_NONE)
444 CODE:
445 w->cb (w, revents);
446
420MODULE = EV PACKAGE = EV::IO PREFIX = evio_ 447MODULE = EV PACKAGE = EV::Io PREFIX = ev_io_
421 448
422void evio_start (struct ev_io *w) 449void ev_io_start (struct ev_io *w)
423 450
424void evio_stop (struct ev_io *w) 451void ev_io_stop (struct ev_io *w)
452
453void DESTROY (struct ev_io *w)
454 CODE:
455 ev_io_stop (w);
456 e_destroy (w);
425 457
426void set (struct ev_io *w, SV *fh, int events) 458void set (struct ev_io *w, SV *fh, int events)
427 CODE: 459 CODE:
428{ 460{
429 int active = w->active; 461 int active = w->active;
462 int fd = sv_fileno (fh);
463 CHECK_FD (fh, fd);
464
430 if (active) evio_stop (w); 465 if (active) ev_io_stop (w);
431 466
432 sv_setsv (w->fh, fh); 467 sv_setsv (w->fh, fh);
433 evio_set (w, sv_fileno (w->fh), events); 468 ev_io_set (w, fd, events);
434 469
435 if (active) evio_start (w); 470 if (active) ev_io_start (w);
436} 471}
437 472
438SV *fh (struct ev_io *w, SV *new_fh = 0) 473SV *fh (struct ev_io *w, SV *new_fh = 0)
439 CODE: 474 CODE:
440{ 475{
441 RETVAL = newSVsv (w->fh); 476 RETVAL = newSVsv (w->fh);
442 477
443 if (items > 1) 478 if (items > 1)
444 { 479 {
445 int active = w->active; 480 int active = w->active;
446 if (active) evio_stop (w); 481 if (active) ev_io_stop (w);
447 482
448 sv_setsv (w->fh, new_fh); 483 sv_setsv (w->fh, new_fh);
449 evio_set (w, sv_fileno (w->fh), w->events); 484 ev_io_set (w, sv_fileno (w->fh), w->events);
450 485
451 if (active) evio_start (w); 486 if (active) ev_io_start (w);
452 } 487 }
453} 488}
454 OUTPUT: 489 OUTPUT:
455 RETVAL 490 RETVAL
456 491
457short events (struct ev_io *w, short new_events = EV_UNDEF) 492int events (struct ev_io *w, int new_events = EV_UNDEF)
458 CODE: 493 CODE:
459{ 494{
460 RETVAL = w->events; 495 RETVAL = w->events;
461 496
462 if (items > 1) 497 if (items > 1)
463 { 498 {
464 int active = w->active; 499 int active = w->active;
465 if (active) evio_stop (w); 500 if (active) ev_io_stop (w);
466 501
467 evio_set (w, w->fd, new_events); 502 ev_io_set (w, w->fd, new_events);
468 503
469 if (active) evio_start (w); 504 if (active) ev_io_start (w);
470 } 505 }
471} 506}
472 OUTPUT: 507 OUTPUT:
473 RETVAL 508 RETVAL
474 509
475MODULE = EV PACKAGE = EV::Signal PREFIX = evsignal_ 510MODULE = EV PACKAGE = EV::Signal PREFIX = ev_signal_
476 511
477void evsignal_start (struct ev_signal *w) 512void ev_signal_start (struct ev_signal *w)
478 513
479void evsignal_stop (struct ev_signal *w) 514void ev_signal_stop (struct ev_signal *w)
515
516void DESTROY (struct ev_signal *w)
517 CODE:
518 ev_signal_stop (w);
519 e_destroy (w);
480 520
481void set (struct ev_signal *w, SV *signal = 0) 521void set (struct ev_signal *w, SV *signal = 0)
482 CODE: 522 CODE:
483{ 523{
484 Signal signum = sv_signum (signal); /* may croak here */ 524 Signal signum = sv_signum (signal); /* may croak here */
485 int active = w->active; 525 int active = w->active;
486 526
487 if (active) evsignal_stop (w); 527 if (active) ev_signal_stop (w);
488 evsignal_set (w, signum); 528 ev_signal_set (w, signum);
489 if (active) evsignal_start (w); 529 if (active) ev_signal_start (w);
490} 530}
491 531
492MODULE = EV PACKAGE = EV::Time 532MODULE = EV PACKAGE = EV::Time
493 533
494MODULE = EV PACKAGE = EV::Timer PREFIX = evtimer_ 534MODULE = EV PACKAGE = EV::Timer PREFIX = ev_timer_
495 535
496void evtimer_start (struct ev_timer *w) 536void ev_timer_start (struct ev_timer *w)
497 INIT: 537 INIT:
498 CHECK_REPEAT (w->repeat); 538 CHECK_REPEAT (w->repeat);
499 539
500void evtimer_stop (struct ev_timer *w) 540void ev_timer_stop (struct ev_timer *w)
501 541
502void evtimer_again (struct ev_timer *w) 542void ev_timer_again (struct ev_timer *w)
503 INIT: 543 INIT:
504 CHECK_REPEAT (w->repeat); 544 CHECK_REPEAT (w->repeat);
545
546void DESTROY (struct ev_timer *w)
547 CODE:
548 ev_timer_stop (w);
549 e_destroy (w);
505 550
506void set (struct ev_timer *w, NV after, NV repeat = 0.) 551void set (struct ev_timer *w, NV after, NV repeat = 0.)
507 INIT: 552 INIT:
508 CHECK_REPEAT (repeat); 553 CHECK_REPEAT (repeat);
509 CODE: 554 CODE:
510{ 555{
511 int active = w->active; 556 int active = w->active;
512 if (active) evtimer_stop (w); 557 if (active) ev_timer_stop (w);
513 evtimer_set (w, after, repeat); 558 ev_timer_set (w, after, repeat);
514 if (active) evtimer_start (w); 559 if (active) ev_timer_start (w);
515} 560}
516 561
517MODULE = EV PACKAGE = EV::Periodic PREFIX = evperiodic_ 562MODULE = EV PACKAGE = EV::Periodic PREFIX = ev_periodic_
518 563
519void evperiodic_start (struct ev_periodic *w) 564void ev_periodic_start (struct ev_periodic *w)
520 INIT: 565 INIT:
521 CHECK_REPEAT (w->interval); 566 CHECK_REPEAT (w->interval);
522 567
523void evperiodic_stop (struct ev_periodic *w) 568void ev_periodic_stop (struct ev_periodic *w)
569
570void DESTROY (struct ev_periodic *w)
571 CODE:
572 ev_periodic_stop (w);
573 e_destroy (w);
524 574
525void set (struct ev_periodic *w, NV at, NV interval = 0.) 575void set (struct ev_periodic *w, NV at, NV interval = 0.)
526 INIT: 576 INIT:
527 CHECK_REPEAT (interval); 577 CHECK_REPEAT (interval);
528 CODE: 578 CODE:
529{ 579{
530 int active = w->active; 580 int active = w->active;
531 if (active) evperiodic_stop (w); 581 if (active) ev_periodic_stop (w);
532 evperiodic_set (w, at, interval); 582 ev_periodic_set (w, at, interval);
533 if (active) evperiodic_start (w); 583 if (active) ev_periodic_start (w);
534} 584}
535 585
536MODULE = EV PACKAGE = EV::Idle PREFIX = evidle_ 586MODULE = EV PACKAGE = EV::Idle PREFIX = ev_idle_
537 587
538void evidle_start (struct ev_idle *w) 588void ev_idle_start (struct ev_idle *w)
539 589
540void evidle_stop (struct ev_idle *w) 590void ev_idle_stop (struct ev_idle *w)
541 591
592void DESTROY (struct ev_idle *w)
593 CODE:
594 ev_idle_stop (w);
595 e_destroy (w);
596
542MODULE = EV PACKAGE = EV::Prepare PREFIX = evcheck_ 597MODULE = EV PACKAGE = EV::Prepare PREFIX = ev_check_
543 598
544void evprepare_start (struct ev_prepare *w) 599void ev_prepare_start (struct ev_prepare *w)
545 600
546void evprepare_stop (struct ev_prepare *w) 601void ev_prepare_stop (struct ev_prepare *w)
547 602
603void DESTROY (struct ev_prepare *w)
604 CODE:
605 ev_prepare_stop (w);
606 e_destroy (w);
607
548MODULE = EV PACKAGE = EV::Check PREFIX = evcheck_ 608MODULE = EV PACKAGE = EV::Check PREFIX = ev_check_
549 609
550void evcheck_start (struct ev_check *w) 610void ev_check_start (struct ev_check *w)
551 611
552void evcheck_stop (struct ev_check *w) 612void ev_check_stop (struct ev_check *w)
553 613
614void DESTROY (struct ev_check *w)
615 CODE:
616 ev_check_stop (w);
617 e_destroy (w);
618
554MODULE = EV PACKAGE = EV::Child PREFIX = evchild_ 619MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_
555 620
556void evchild_start (struct ev_child *w) 621void ev_child_start (struct ev_child *w)
557 622
558void evchild_stop (struct ev_child *w) 623void ev_child_stop (struct ev_child *w)
624
625void DESTROY (struct ev_child *w)
626 CODE:
627 ev_child_stop (w);
628 e_destroy (w);
559 629
560void set (struct ev_child *w, int pid) 630void set (struct ev_child *w, int pid)
561 CODE: 631 CODE:
562{ 632{
563 int active = w->active; 633 int active = w->active;
564 if (active) evchild_stop (w); 634 if (active) ev_child_stop (w);
565 evchild_set (w, pid); 635 ev_child_set (w, pid);
566 if (active) evchild_start (w); 636 if (active) ev_child_start (w);
567} 637}
568 638
569int status (struct ev_child *w) 639int status (struct ev_child *w)
570 CODE: 640 CODE:
571 RETVAL = w->status; 641 RETVAL = w->status;
572 OUTPUT: 642 OUTPUT:
573 RETVAL 643 RETVAL
574
575#if 0
576 644
577MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 645MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
578 646
579BOOT: 647BOOT:
580{ 648{
663 731
664void evdns_search_add (char *domain) 732void evdns_search_add (char *domain)
665 733
666void evdns_search_ndots_set (int ndots) 734void evdns_search_ndots_set (int ndots)
667 735
736#if 0
668 737
669MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_ 738MODULE = EV PACKAGE = EV::HTTP PREFIX = evhttp_
670 739
671BOOT: 740BOOT:
672{ 741{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines