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

Comparing EV/EV.xs (file contents):
Revision 1.166 by root, Sat Apr 6 00:05:45 2013 UTC vs.
Revision 1.173 by root, Tue Jun 25 23:57:23 2019 UTC

1#include "EXTERN.h" 1#include "EXTERN.h"
2#include "perl.h" 2#include "perl.h"
3#include "XSUB.h" 3#include "XSUB.h"
4 4
5/* fix perl api breakage */ 5/* fix perl api breakage */
6#ifndef WIN32
6#undef signal 7# undef signal
7#undef sigaction 8# undef sigaction
9#endif
8 10
9#include "schmorp.h" 11#include "schmorp.h"
10 12
11/* old API compatibility */ 13/* old API compatibility */
12static int 14static int
15 return s_fileno (fh, 0); 17 return s_fileno (fh, 0);
16} 18}
17 19
18#ifndef GvCV_set 20#ifndef GvCV_set
19# define GvCV_set(gv,cv) GvCV (gv) = cv 21# define GvCV_set(gv,cv) GvCV (gv) = cv
22#endif
23
24#if EV_ENABLE_ASSERTIONS
25# undef NDEBUG
26# include <assert.h>
20#endif 27#endif
21 28
22#define EV_STANDALONE 1 29#define EV_STANDALONE 1
23#define EV_PROTOTYPES 1 30#define EV_PROTOTYPES 1
24#define EV_USE_NANOSLEEP EV_USE_MONOTONIC 31#define EV_USE_NANOSLEEP EV_USE_MONOTONIC
35# define fd_mask Perl_fd_mask 42# define fd_mask Perl_fd_mask
36#endif 43#endif
37/* due to bugs in OS X we have to use libev/ explicitly here */ 44/* due to bugs in OS X we have to use libev/ explicitly here */
38#include "libev/ev.c" 45#include "libev/ev.c"
39 46
40#if !defined _WIN32 && !defined _MINIX 47#if !defined _WIN32 && !defined _MINIX && !EV_NO_ATFORK
41# include <pthread.h> 48# include <pthread.h>
42#endif 49#endif
43 50
44#define e_loop(w) INT2PTR (struct ev_loop *, SvIVX (((ev_watcher *)(w))->loop)) 51#define e_loop(w) INT2PTR (struct ev_loop *, SvIVX (((ev_watcher *)(w))->loop))
45#define e_flags(w) ((ev_watcher *)(w))->e_flags 52#define e_flags(w) ((ev_watcher *)(w))->e_flags
531 evapi.invoke = ev_invoke; 538 evapi.invoke = ev_invoke;
532 539
533 sv_setiv (sv, (IV)&evapi); 540 sv_setiv (sv, (IV)&evapi);
534 SvREADONLY_on (sv); 541 SvREADONLY_on (sv);
535 } 542 }
536#if !defined _WIN32 && !defined _MINIX 543#if !defined _WIN32 && !defined _MINIX && !EV_NO_ATFORK
537#if __linux 544/* unfortunately, musl neither implements the linux standard base,
545/* nor makes itself detectable via macros. yeah, right... */
546#if __linux && (__GLIBC__ || __UCLIBC__)
538 int __register_atfork(void (*prepare) (void), void (*parent) (void), void (*child) (void), void * __dso_handle); 547 int __register_atfork(void (*prepare) (void), void (*parent) (void), void (*child) (void), void * __dso_handle);
539 __register_atfork (0, 0, default_fork, 0); 548 __register_atfork (0, 0, default_fork, 0);
540#else 549#else
541 pthread_atfork (0, 0, default_fork); 550 pthread_atfork (0, 0, default_fork);
542#endif 551#endif
578NV ev_time () 587NV ev_time ()
579 588
580void ev_feed_signal (SV *signal) 589void ev_feed_signal (SV *signal)
581 CODE: 590 CODE:
582{ 591{
583 Signal signum = s_signum (signal); 592 Signal signum = s_signum (signal);
584 CHECK_SIG (signal, signum); 593 CHECK_SIG (signal, signum);
585 594
586 ev_feed_signal (signum); 595 ev_feed_signal (signum);
587} 596}
588 597
690 periodic_ns = 1 699 periodic_ns = 1
691 INIT: 700 INIT:
692 CHECK_REPEAT (interval); 701 CHECK_REPEAT (interval);
693 CODE: 702 CODE:
694{ 703{
695 ev_periodic *w; 704 ev_periodic *w;
696 w = e_new (sizeof (ev_periodic), cb, default_loop_sv); 705 w = e_new (sizeof (ev_periodic), cb, default_loop_sv);
697 e_fh (w) = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0; 706 e_fh (w) = SvTRUE (reschedule_cb) ? newSVsv (reschedule_cb) : 0;
698 ev_periodic_set (w, at, interval, e_fh (w) ? e_periodic_cb : 0); 707 ev_periodic_set (w, at, interval, e_fh (w) ? e_periodic_cb : 0);
699 RETVAL = e_bless ((ev_watcher *)w, stash_periodic); 708 RETVAL = e_bless ((ev_watcher *)w, stash_periodic);
700 if (!ix) START (periodic, w); 709 if (!ix) START (periodic, w);
705ev_signal *signal (SV *signal, SV *cb) 714ev_signal *signal (SV *signal, SV *cb)
706 ALIAS: 715 ALIAS:
707 signal_ns = 1 716 signal_ns = 1
708 CODE: 717 CODE:
709{ 718{
710 Signal signum = s_signum (signal); 719 Signal signum = s_signum (signal);
711 CHECK_SIG (signal, signum); 720 CHECK_SIG (signal, signum);
712 721
713 RETVAL = e_new (sizeof (ev_signal), cb, default_loop_sv); 722 RETVAL = e_new (sizeof (ev_signal), cb, default_loop_sv);
714 ev_signal_set (RETVAL, signum); 723 ev_signal_set (RETVAL, signum);
715 if (!ix) START_SIGNAL (RETVAL); 724 if (!ix) START_SIGNAL (RETVAL);
1043 1052
1044void ev_timer_stop (ev_timer *w) 1053void ev_timer_stop (ev_timer *w)
1045 CODE: 1054 CODE:
1046 STOP (timer, w); 1055 STOP (timer, w);
1047 1056
1048void ev_timer_again (ev_timer *w) 1057void ev_timer_again (ev_timer *w, NV repeat = NO_INIT)
1049 INIT: 1058 CODE:
1059 if (items > 1)
1060 w->repeat = repeat;
1050 CHECK_REPEAT (w->repeat); 1061 CHECK_REPEAT (w->repeat);
1051 CODE:
1052 ev_timer_again (e_loop (w), w); 1062 ev_timer_again (e_loop (w), w);
1053 UNREF (w); 1063 UNREF (w);
1054 1064
1055NV ev_timer_remaining (ev_timer *w) 1065NV ev_timer_remaining (ev_timer *w)
1056 C_ARGS: e_loop (w), w 1066 C_ARGS: e_loop (w), w

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines