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

Comparing EV/EV.xs (file contents):
Revision 1.140 by root, Thu Apr 22 11:25:43 2010 UTC vs.
Revision 1.162 by root, Tue Jan 15 21:49:38 2013 UTC

16} 16}
17 17
18#define EV_STANDALONE 1 18#define EV_STANDALONE 1
19#define EV_PROTOTYPES 1 19#define EV_PROTOTYPES 1
20#define EV_USE_NANOSLEEP EV_USE_MONOTONIC 20#define EV_USE_NANOSLEEP EV_USE_MONOTONIC
21#define EV_USE_FLOOR 1
22#define EV_API_STATIC
21#define EV_H <ev.h> 23#define EV_H <ev.h>
22#define EV_CONFIG_H error 24#define EV_CONFIG_H error
23#include "EV/EVAPI.h" 25#include "EV/EVAPI.h"
24 26
25#define EV_SELECT_IS_WINSOCKET 0 27#define EV_SELECT_IS_WINSOCKET 0
29# define fd_mask Perl_fd_mask 31# define fd_mask Perl_fd_mask
30#endif 32#endif
31/* due to bugs in OS X we have to use libev/ explicitly here */ 33/* due to bugs in OS X we have to use libev/ explicitly here */
32#include "libev/ev.c" 34#include "libev/ev.c"
33 35
34#ifndef _WIN32 36#if !defined _WIN32 && !defined _MINIX
35# include <pthread.h> 37# include <pthread.h>
36#endif 38#endif
37 39
38#define e_loop(w) INT2PTR (struct ev_loop *, SvIVX (((ev_watcher *)(w))->loop)) 40#define e_loop(w) INT2PTR (struct ev_loop *, SvIVX (((ev_watcher *)(w))->loop))
39#define e_flags(w) ((ev_watcher *)(w))->e_flags 41#define e_flags(w) ((ev_watcher *)(w))->e_flags
120 *stash_idle, 122 *stash_idle,
121 *stash_prepare, 123 *stash_prepare,
122 *stash_check, 124 *stash_check,
123 *stash_embed, 125 *stash_embed,
124 *stash_fork, 126 *stash_fork,
127 *stash_cleanup,
125 *stash_async; 128 *stash_async;
126 129
127///////////////////////////////////////////////////////////////////////////// 130/////////////////////////////////////////////////////////////////////////////
128// Event 131// Event
129 132
130static void e_cb (EV_P_ ev_watcher *w, int revents); 133static void e_cb (EV_P_ ev_watcher *w, int revents);
131 134
132void * 135static void *
133e_new (int size, SV *cb_sv, SV *loop) 136e_new (int size, SV *cb_sv, SV *loop)
134{ 137{
135 SV *cv = cb_sv ? s_get_cv_croak (cb_sv) : 0; 138 SV *cv = cb_sv ? s_get_cv_croak (cb_sv) : 0;
136 ev_watcher *w; 139 ev_watcher *w;
137 SV *self = NEWSV (0, size); 140 SV *self = NEWSV (0, size);
207 210
208 if (expect_true (sv_events_cache)) 211 if (expect_true (sv_events_cache))
209 { 212 {
210 sv_events = sv_events_cache; sv_events_cache = 0; 213 sv_events = sv_events_cache; sv_events_cache = 0;
211 SvIV_set (sv_events, revents); 214 SvIV_set (sv_events, revents);
215 SvIOK_only (sv_events);
212 } 216 }
213 else 217 else
214 { 218 {
215 sv_events = newSViv (revents); 219 sv_events = newSViv (revents);
216 SvREADONLY_on (sv_events); 220 SvREADONLY_on (sv_events);
340 croak ("illegal file descriptor or filehandle (either no attached file descriptor or illegal value): %s", SvPV_nolen (fh)); 344 croak ("illegal file descriptor or filehandle (either no attached file descriptor or illegal value): %s", SvPV_nolen (fh));
341 345
342#define CHECK_SIG(sv,num) if ((num) < 0) \ 346#define CHECK_SIG(sv,num) if ((num) < 0) \
343 croak ("illegal signal number or name: %s", SvPV_nolen (sv)); 347 croak ("illegal signal number or name: %s", SvPV_nolen (sv));
344 348
349static void
350default_fork (void)
351{
352 ev_loop_fork (EV_DEFAULT_UC);
353}
354
345///////////////////////////////////////////////////////////////////////////// 355/////////////////////////////////////////////////////////////////////////////
346// XS interface functions 356// XS interface functions
347 357
348MODULE = EV PACKAGE = EV PREFIX = ev_ 358MODULE = EV PACKAGE = EV PREFIX = ev_
349 359
364 const_iv (EV_, UNDEF) 374 const_iv (EV_, UNDEF)
365 const_iv (EV_, NONE) 375 const_iv (EV_, NONE)
366 const_iv (EV_, READ) 376 const_iv (EV_, READ)
367 const_iv (EV_, WRITE) 377 const_iv (EV_, WRITE)
368 const_iv (EV_, IO) 378 const_iv (EV_, IO)
369 const_iv (EV_, TIMEOUT) /* deprecated */
370 const_iv (EV_, TIMER) 379 const_iv (EV_, TIMER)
371 const_iv (EV_, PERIODIC) 380 const_iv (EV_, PERIODIC)
372 const_iv (EV_, SIGNAL) 381 const_iv (EV_, SIGNAL)
373 const_iv (EV_, CHILD) 382 const_iv (EV_, CHILD)
374 const_iv (EV_, STAT) 383 const_iv (EV_, STAT)
375 const_iv (EV_, IDLE) 384 const_iv (EV_, IDLE)
376 const_iv (EV_, PREPARE) 385 const_iv (EV_, PREPARE)
377 const_iv (EV_, CHECK) 386 const_iv (EV_, CHECK)
378 const_iv (EV_, EMBED) 387 const_iv (EV_, EMBED)
379 const_iv (EV_, FORK) 388 const_iv (EV_, FORK)
389 const_iv (EV_, CLEANUP)
380 const_iv (EV_, ASYNC) 390 const_iv (EV_, ASYNC)
381 const_iv (EV_, CUSTOM) 391 const_iv (EV_, CUSTOM)
382 const_iv (EV_, ERROR) 392 const_iv (EV_, ERROR)
383 393
384 const_iv (EV, LOOP_NONBLOCK)
385 const_iv (EV, LOOP_ONESHOT)
386
387 const_iv (EV, UNLOOP_CANCEL) 394 const_iv (EV, RUN_NOWAIT)
388 const_iv (EV, UNLOOP_ONE) 395 const_iv (EV, RUN_ONCE)
396
397 const_iv (EV, BREAK_CANCEL)
398 const_iv (EV, BREAK_ONE)
389 const_iv (EV, UNLOOP_ALL) 399 const_iv (EV, BREAK_ALL)
390
391 const_iv (EV, BACKEND_SELECT) 400 const_iv (EV, BACKEND_SELECT)
392 const_iv (EV, BACKEND_POLL) 401 const_iv (EV, BACKEND_POLL)
393 const_iv (EV, BACKEND_EPOLL) 402 const_iv (EV, BACKEND_EPOLL)
394 const_iv (EV, BACKEND_KQUEUE) 403 const_iv (EV, BACKEND_KQUEUE)
395 const_iv (EV, BACKEND_DEVPOLL) 404 const_iv (EV, BACKEND_DEVPOLL)
396 const_iv (EV, BACKEND_PORT) 405 const_iv (EV, BACKEND_PORT)
397 const_iv (EV, BACKEND_ALL) 406 const_iv (EV, BACKEND_ALL)
407 const_iv (EV, BACKEND_MASK)
398 const_iv (EV, FLAG_AUTO) 408 const_iv (EV, FLAG_AUTO)
399 const_iv (EV, FLAG_FORKCHECK) 409 const_iv (EV, FLAG_FORKCHECK)
400 const_iv (EV, FLAG_SIGNALFD) 410 const_iv (EV, FLAG_SIGNALFD)
411 const_iv (EV, FLAG_NOSIGMASK)
401 const_iv (EV, FLAG_NOENV) 412 const_iv (EV, FLAG_NOENV)
402 const_iv (EV, FLAG_NOSIGFD) /* compatibility, always 0 */
403 const_iv (EV, FLAG_NOINOTIFY) 413 const_iv (EV, FLAG_NOINOTIFY)
404 414
405 const_iv (EV_, VERSION_MAJOR) 415 const_iv (EV_, VERSION_MAJOR)
406 const_iv (EV_, VERSION_MINOR) 416 const_iv (EV_, VERSION_MINOR)
417#if EV_COMPAT3
418 const_iv (EV, FLAG_NOSIGFD) /* compatibility, always 0 */
419 const_iv (EV_, TIMEOUT)
420 const_iv (EV, LOOP_NONBLOCK)
421 const_iv (EV, LOOP_ONESHOT)
422 const_iv (EV, UNLOOP_CANCEL)
423 const_iv (EV, UNLOOP_ONE)
424 const_iv (EV, UNLOOP_ALL)
425#endif
407 }; 426 };
408 427
409 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 428 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ > const_iv; civ--)
410 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 429 newCONSTSUB (stash, (char *)civ[-1].name, newSViv (civ[-1].iv));
411 430
412 stash_loop = gv_stashpv ("EV::Loop" , 1); 431 stash_loop = gv_stashpv ("EV::Loop" , 1);
413 stash_watcher = gv_stashpv ("EV::Watcher" , 1); 432 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
414 stash_io = gv_stashpv ("EV::IO" , 1); 433 stash_io = gv_stashpv ("EV::IO" , 1);
415 stash_timer = gv_stashpv ("EV::Timer" , 1); 434 stash_timer = gv_stashpv ("EV::Timer" , 1);
420 stash_check = gv_stashpv ("EV::Check" , 1); 439 stash_check = gv_stashpv ("EV::Check" , 1);
421 stash_child = gv_stashpv ("EV::Child" , 1); 440 stash_child = gv_stashpv ("EV::Child" , 1);
422 stash_embed = gv_stashpv ("EV::Embed" , 1); 441 stash_embed = gv_stashpv ("EV::Embed" , 1);
423 stash_stat = gv_stashpv ("EV::Stat" , 1); 442 stash_stat = gv_stashpv ("EV::Stat" , 1);
424 stash_fork = gv_stashpv ("EV::Fork" , 1); 443 stash_fork = gv_stashpv ("EV::Fork" , 1);
444 stash_cleanup = gv_stashpv ("EV::Cleanup" , 1);
425 stash_async = gv_stashpv ("EV::Async" , 1); 445 stash_async = gv_stashpv ("EV::Async" , 1);
426 446
427 { 447 {
428 SV *sv = perl_get_sv ("EV::API", TRUE); 448 SV *sv = perl_get_sv ("EV::API", TRUE);
429 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */ 449 perl_get_sv ("EV::API", TRUE); /* silence 5.10 warning */
448 evapi.now = ev_now; 468 evapi.now = ev_now;
449 evapi.now_update = ev_now_update; 469 evapi.now_update = ev_now_update;
450 evapi.suspend = ev_suspend; 470 evapi.suspend = ev_suspend;
451 evapi.resume = ev_resume; 471 evapi.resume = ev_resume;
452 evapi.backend = ev_backend; 472 evapi.backend = ev_backend;
453 evapi.unloop = ev_unloop; 473 evapi.break_ = ev_break;
454 evapi.invoke_pending = ev_invoke_pending; 474 evapi.invoke_pending = ev_invoke_pending;
455 evapi.pending_count = ev_pending_count; 475 evapi.pending_count = ev_pending_count;
456 evapi.verify = ev_verify; 476 evapi.verify = ev_verify;
457 evapi.set_loop_release_cb = ev_set_loop_release_cb; 477 evapi.set_loop_release_cb = ev_set_loop_release_cb;
458 evapi.set_invoke_pending_cb= ev_set_invoke_pending_cb; 478 evapi.set_invoke_pending_cb= ev_set_invoke_pending_cb;
459 evapi.ref = ev_ref; 479 evapi.ref = ev_ref;
460 evapi.unref = ev_unref; 480 evapi.unref = ev_unref;
461 evapi.loop = ev_loop; 481 evapi.run = ev_run;
462 evapi.once = ev_once; 482 evapi.once = ev_once;
463 evapi.io_start = ev_io_start; 483 evapi.io_start = ev_io_start;
464 evapi.io_stop = ev_io_stop; 484 evapi.io_stop = ev_io_stop;
465 evapi.timer_start = ev_timer_start; 485 evapi.timer_start = ev_timer_start;
466 evapi.timer_stop = ev_timer_stop; 486 evapi.timer_stop = ev_timer_stop;
486 evapi.embed_start = ev_embed_start; 506 evapi.embed_start = ev_embed_start;
487 evapi.embed_stop = ev_embed_stop; 507 evapi.embed_stop = ev_embed_stop;
488 evapi.embed_sweep = ev_embed_sweep; 508 evapi.embed_sweep = ev_embed_sweep;
489 evapi.fork_start = ev_fork_start; 509 evapi.fork_start = ev_fork_start;
490 evapi.fork_stop = ev_fork_stop; 510 evapi.fork_stop = ev_fork_stop;
511 evapi.cleanup_start = ev_cleanup_start;
512 evapi.cleanup_stop = ev_cleanup_stop;
491 evapi.async_start = ev_async_start; 513 evapi.async_start = ev_async_start;
492 evapi.async_stop = ev_async_stop; 514 evapi.async_stop = ev_async_stop;
493 evapi.async_send = ev_async_send; 515 evapi.async_send = ev_async_send;
494 evapi.clear_pending = ev_clear_pending; 516 evapi.clear_pending = ev_clear_pending;
495 evapi.invoke = ev_invoke; 517 evapi.invoke = ev_invoke;
496 518
497 sv_setiv (sv, (IV)&evapi); 519 sv_setiv (sv, (IV)&evapi);
498 SvREADONLY_on (sv); 520 SvREADONLY_on (sv);
499 } 521 }
500#ifndef _WIN32 522#if !defined _WIN32 && !defined _MINIX
523#if __linux
524 int __register_atfork(void (*prepare) (void), void (*parent) (void), void (*child) (void), void * __dso_handle);
525 __register_atfork (0, 0, default_fork, 0);
526#else
501 pthread_atfork (0, 0, ev_default_fork); 527 pthread_atfork (0, 0, default_fork);
528#endif
502#endif 529#endif
503} 530}
504 531
505SV *ev_default_loop (unsigned int flags = 0) 532SV *ev_default_loop (unsigned int flags = 0)
506 CODE: 533 CODE:
520 OUTPUT: 547 OUTPUT:
521 RETVAL 548 RETVAL
522 549
523void ev_default_destroy () 550void ev_default_destroy ()
524 CODE: 551 CODE:
525 ev_default_destroy (); 552 ev_loop_destroy (EV_DEFAULT_UC);
526 SvREFCNT_dec (default_loop_sv); 553 SvREFCNT_dec (default_loop_sv);
527 default_loop_sv = 0; 554 default_loop_sv = 0;
528 555
529unsigned int ev_supported_backends () 556unsigned int ev_supported_backends ()
530 557
534 561
535void ev_sleep (NV interval) 562void ev_sleep (NV interval)
536 563
537NV ev_time () 564NV ev_time ()
538 565
566void ev_feed_signal (SV *signal)
567 CODE:
568{
569 Signal signum = s_signum (signal);
570 CHECK_SIG (signal, signum);
571
572 ev_feed_signal (signum);
573}
574
539NV ev_now () 575NV ev_now ()
540 C_ARGS: evapi.default_loop 576 C_ARGS: evapi.default_loop
541 577
542void ev_now_update () 578void ev_now_update ()
543 C_ARGS: evapi.default_loop 579 C_ARGS: evapi.default_loop
550 586
551unsigned int ev_backend () 587unsigned int ev_backend ()
552 C_ARGS: evapi.default_loop 588 C_ARGS: evapi.default_loop
553 589
554void ev_verify () 590void ev_verify ()
591 ALIAS:
592 loop_verify = 1
555 C_ARGS: evapi.default_loop 593 C_ARGS: evapi.default_loop
556 594
557unsigned int ev_iteration () 595unsigned int ev_iteration ()
596 ALIAS:
597 loop_count = 1
558 C_ARGS: evapi.default_loop 598 C_ARGS: evapi.default_loop
559 599
560unsigned int ev_depth () 600unsigned int ev_depth ()
601 ALIAS:
602 loop_depth = 1
561 C_ARGS: evapi.default_loop 603 C_ARGS: evapi.default_loop
562 604
563void ev_set_io_collect_interval (NV interval) 605void ev_set_io_collect_interval (NV interval)
564 C_ARGS: evapi.default_loop, interval 606 C_ARGS: evapi.default_loop, interval
565 607
566void ev_set_timeout_collect_interval (NV interval) 608void ev_set_timeout_collect_interval (NV interval)
567 C_ARGS: evapi.default_loop, interval 609 C_ARGS: evapi.default_loop, interval
568 610
569void ev_loop (int flags = 0) 611int ev_run (int flags = 0)
612 ALIAS:
613 loop = 1
570 C_ARGS: evapi.default_loop, flags 614 C_ARGS: evapi.default_loop, flags
571 615
572void ev_unloop (int how = EVUNLOOP_ONE) 616void ev_break (int how = EVBREAK_ONE)
617 ALIAS:
618 unloop = 1
573 C_ARGS: evapi.default_loop, how 619 C_ARGS: evapi.default_loop, how
574 620
575void ev_feed_fd_event (int fd, int revents = EV_NONE) 621void ev_feed_fd_event (int fd, int revents = EV_NONE)
576 C_ARGS: evapi.default_loop, fd, revents 622 C_ARGS: evapi.default_loop, fd, revents
577 623
578void ev_feed_signal_event (SV *signal) 624void ev_feed_signal_event (SV *signal)
579 CODE: 625 CODE:
580{ 626{
581 Signal signum = s_signum (signal); 627 Signal signum = s_signum (signal);
582 CHECK_SIG (signal, signum); 628 CHECK_SIG (signal, signum);
583 629
584 ev_feed_signal_event (evapi.default_loop, signum); 630 ev_feed_signal_event (evapi.default_loop, signum);
585} 631}
586 632
695 ev_fork_set (RETVAL); 741 ev_fork_set (RETVAL);
696 if (!ix) START (fork, RETVAL); 742 if (!ix) START (fork, RETVAL);
697 OUTPUT: 743 OUTPUT:
698 RETVAL 744 RETVAL
699 745
746#if CLEANUP_ENABLED
747
748ev_cleanup *cleanup (SV *cb)
749 ALIAS:
750 cleanup_ns = 1
751 CODE:
752 RETVAL = e_new (sizeof (ev_cleanup), cb, default_loop_sv);
753 SvREFCNT_dec (RETVAL->loop); /* must not keep loop object alive */
754 ev_cleanup_set (RETVAL);
755 if (!ix) START (cleanup, RETVAL);
756 OUTPUT:
757 RETVAL
758
759#endif
700 760
701ev_child *child (int pid, int trace, SV *cb) 761ev_child *child (int pid, int trace, SV *cb)
702 ALIAS: 762 ALIAS:
703 child_ns = 1 763 child_ns = 1
704 CODE: 764 CODE:
722 ev_stat_set (RETVAL, SvPVbyte_nolen (e_fh (RETVAL)), interval); 782 ev_stat_set (RETVAL, SvPVbyte_nolen (e_fh (RETVAL)), interval);
723 if (!ix) START (stat, RETVAL); 783 if (!ix) START (stat, RETVAL);
724 OUTPUT: 784 OUTPUT:
725 RETVAL 785 RETVAL
726 786
787#ifndef EV_NO_LOOPS
788
727ev_embed *embed (struct ev_loop *loop, SV *cb = 0) 789ev_embed *embed (struct ev_loop *loop, SV *cb = 0)
728 ALIAS: 790 ALIAS:
729 embed_ns = 1 791 embed_ns = 1
730 CODE: 792 CODE:
731{ 793{
737 ev_embed_set (RETVAL, loop); 799 ev_embed_set (RETVAL, loop);
738 if (!ix) START (embed, RETVAL); 800 if (!ix) START (embed, RETVAL);
739} 801}
740 OUTPUT: 802 OUTPUT:
741 RETVAL 803 RETVAL
804
805#endif
742 806
743ev_async *async (SV *cb) 807ev_async *async (SV *cb)
744 ALIAS: 808 ALIAS:
745 async_ns = 1 809 async_ns = 1
746 CODE: 810 CODE:
1084 1148
1085void DESTROY (ev_fork *w) 1149void DESTROY (ev_fork *w)
1086 CODE: 1150 CODE:
1087 STOP (fork, w); 1151 STOP (fork, w);
1088 e_destroy (w); 1152 e_destroy (w);
1153
1154#if CLEANUP_ENABLED
1155
1156MODULE = EV PACKAGE = EV::Cleanup PREFIX = ev_cleanup_
1157
1158void ev_cleanup_start (ev_cleanup *w)
1159 CODE:
1160 START (cleanup, w);
1161
1162void ev_cleanup_stop (ev_cleanup *w)
1163 CODE:
1164 STOP (cleanup, w);
1165
1166void DESTROY (ev_cleanup *w)
1167 CODE:
1168 STOP (cleanup, w);
1169 SvREFCNT_inc (w->loop); /* has been dec'ed on creation */
1170 e_destroy (w);
1171
1172int keepalive (ev_watcher *w, SV *new_value = 0)
1173 CODE:
1174 RETVAL = 1;
1175 OUTPUT:
1176 RETVAL
1177
1178#endif
1089 1179
1090MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_ 1180MODULE = EV PACKAGE = EV::Child PREFIX = ev_child_
1091 1181
1092#if EV_CHILD_ENABLE 1182#if EV_CHILD_ENABLE
1093 1183
1268 CODE: 1358 CODE:
1269 RETVAL = boolSV (ev_async_pending (w)); 1359 RETVAL = boolSV (ev_async_pending (w));
1270 OUTPUT: 1360 OUTPUT:
1271 RETVAL 1361 RETVAL
1272 1362
1363#ifndef EV_NO_LOOPS
1364
1273MODULE = EV PACKAGE = EV::Loop PREFIX = ev_ 1365MODULE = EV PACKAGE = EV::Loop PREFIX = ev_
1274 1366
1275SV *new (SV *klass, unsigned int flags = 0) 1367SV *new (SV *klass, unsigned int flags = 0)
1276 CODE: 1368 CODE:
1277{ 1369{
1285 OUTPUT: 1377 OUTPUT:
1286 RETVAL 1378 RETVAL
1287 1379
1288void DESTROY (struct ev_loop *loop) 1380void DESTROY (struct ev_loop *loop)
1289 CODE: 1381 CODE:
1290 if (loop != evapi.default_loop) /* global destruction sucks */ 1382 /* 1. the default loop shouldn't be freed by destroying it's perl loop object */
1383 /* 2. not doing so helps avoid many global destruction bugs in perl, too */
1384 if (loop != evapi.default_loop)
1291 ev_loop_destroy (loop); 1385 ev_loop_destroy (loop);
1292 1386
1293void ev_loop_fork (struct ev_loop *loop) 1387void ev_loop_fork (struct ev_loop *loop)
1294 1388
1389NV ev_now (struct ev_loop *loop)
1390
1391void ev_now_update (struct ev_loop *loop)
1392
1393void ev_suspend (struct ev_loop *loop)
1394
1395void ev_resume (struct ev_loop *loop)
1396
1397void ev_set_io_collect_interval (struct ev_loop *loop, NV interval)
1398
1399void ev_set_timeout_collect_interval (struct ev_loop *loop, NV interval)
1400
1401unsigned int ev_backend (struct ev_loop *loop)
1402
1295void ev_verify (struct ev_loop *loop) 1403void ev_verify (struct ev_loop *loop)
1296 1404 ALIAS:
1297NV ev_now (struct ev_loop *loop) 1405 loop_verify = 1
1298
1299void ev_now_update (struct ev_loop *loop)
1300
1301void ev_suspend (struct ev_loop *loop)
1302
1303void ev_resume (struct ev_loop *loop)
1304
1305void ev_set_io_collect_interval (struct ev_loop *loop, NV interval)
1306
1307void ev_set_timeout_collect_interval (struct ev_loop *loop, NV interval)
1308
1309unsigned int ev_backend (struct ev_loop *loop)
1310 1406
1311unsigned int ev_iteration (struct ev_loop *loop) 1407unsigned int ev_iteration (struct ev_loop *loop)
1408 ALIAS:
1409 loop_count = 1
1312 1410
1313unsigned int ev_depth (struct ev_loop *loop) 1411unsigned int ev_depth (struct ev_loop *loop)
1412 ALIAS:
1413 loop_depth = 1
1314 1414
1315void ev_loop (struct ev_loop *loop, int flags = 0) 1415int ev_run (struct ev_loop *loop, int flags = 0)
1416 ALIAS:
1417 loop = 1
1316 1418
1317void ev_unloop (struct ev_loop *loop, int how = 1) 1419void ev_break (struct ev_loop *loop, int how = 1)
1420 ALIAS:
1421 unloop = 1
1318 1422
1319void ev_feed_fd_event (struct ev_loop *loop, int fd, int revents = EV_NONE) 1423void ev_feed_fd_event (struct ev_loop *loop, int fd, int revents = EV_NONE)
1320 1424
1321unsigned int ev_pending_count (struct ev_loop *loop) 1425unsigned int ev_pending_count (struct ev_loop *loop)
1322 1426
1325#if 0 1429#if 0
1326 1430
1327void ev_feed_signal_event (struct ev_loop *loop, SV *signal) 1431void ev_feed_signal_event (struct ev_loop *loop, SV *signal)
1328 CODE: 1432 CODE:
1329{ 1433{
1330 Signal signum = s_signum (signal); 1434 Signal signum = s_signum (signal);
1331 CHECK_SIG (signal, signum); 1435 CHECK_SIG (signal, signum);
1332 1436
1333 ev_feed_signal_event (loop, signum); 1437 ev_feed_signal_event (loop, signum);
1334} 1438}
1335 1439
1368 periodic_ns = 1 1472 periodic_ns = 1
1369 INIT: 1473 INIT:
1370 CHECK_REPEAT (interval); 1474 CHECK_REPEAT (interval);
1371 CODE: 1475 CODE:
1372{ 1476{
1373 ev_periodic *w; 1477 ev_periodic *w;
1374 w = e_new (sizeof (ev_periodic), cb, ST (0)); 1478 w = e_new (sizeof (ev_periodic), cb, ST (0));
1375 e_fh (w) = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0; 1479 e_fh (w) = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
1376 ev_periodic_set (w, at, interval, e_fh (w) ? e_periodic_cb : 0); 1480 ev_periodic_set (w, at, interval, e_fh (w) ? e_periodic_cb : 0);
1377 RETVAL = e_bless ((ev_watcher *)w, stash_periodic); 1481 RETVAL = e_bless ((ev_watcher *)w, stash_periodic);
1378 if (!ix) START (periodic, w); 1482 if (!ix) START (periodic, w);
1383ev_signal *signal (struct ev_loop *loop, SV *signal, SV *cb) 1487ev_signal *signal (struct ev_loop *loop, SV *signal, SV *cb)
1384 ALIAS: 1488 ALIAS:
1385 signal_ns = 1 1489 signal_ns = 1
1386 CODE: 1490 CODE:
1387{ 1491{
1388 Signal signum = s_signum (signal); 1492 Signal signum = s_signum (signal);
1389 CHECK_SIG (signal, signum); 1493 CHECK_SIG (signal, signum);
1390 1494
1391 RETVAL = e_new (sizeof (ev_signal), cb, ST (0)); 1495 RETVAL = e_new (sizeof (ev_signal), cb, ST (0));
1392 ev_signal_set (RETVAL, signum); 1496 ev_signal_set (RETVAL, signum);
1393 if (!ix) START_SIGNAL (RETVAL); 1497 if (!ix) START_SIGNAL (RETVAL);
1433 ev_fork_set (RETVAL); 1537 ev_fork_set (RETVAL);
1434 if (!ix) START (fork, RETVAL); 1538 if (!ix) START (fork, RETVAL);
1435 OUTPUT: 1539 OUTPUT:
1436 RETVAL 1540 RETVAL
1437 1541
1542#if CLEANUP_ENABLED
1543
1544ev_cleanup *cleanup (struct ev_loop *loop, SV *cb)
1545 ALIAS:
1546 cleanup_ns = 1
1547 CODE:
1548 RETVAL = e_new (sizeof (ev_cleanup), cb, ST (0));
1549 SvREFCNT_dec (RETVAL->loop); /* must not keep loop object alive */
1550 ev_cleanup_set (RETVAL);
1551 if (!ix) START (cleanup, RETVAL);
1552 OUTPUT:
1553 RETVAL
1554
1555#endif
1438 1556
1439ev_child *child (struct ev_loop *loop, int pid, int trace, SV *cb) 1557ev_child *child (struct ev_loop *loop, int pid, int trace, SV *cb)
1440 ALIAS: 1558 ALIAS:
1441 child_ns = 1 1559 child_ns = 1
1442 CODE: 1560 CODE:
1495 SvOK (timeout) ? SvNV (timeout) : -1., 1613 SvOK (timeout) ? SvNV (timeout) : -1.,
1496 e_once_cb, 1614 e_once_cb,
1497 newSVsv (cb) 1615 newSVsv (cb)
1498 ); 1616 );
1499 1617
1618#endif
1619

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines