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

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines