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

Comparing EV/EV.xs (file contents):
Revision 1.154 by root, Tue Jan 11 02:31:24 2011 UTC vs.
Revision 1.159 by root, Mon Apr 2 20:12:15 2012 UTC

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_CLOCK_SYSCALL 0 /* as long as we need pthreads anyways... */ 20#define EV_USE_CLOCK_SYSCALL 0 /* as long as we need pthreads anyways... */
21#define EV_USE_NANOSLEEP EV_USE_MONOTONIC 21#define EV_USE_NANOSLEEP EV_USE_MONOTONIC
22#define EV_USE_FLOOR 1
23#define EV_API_STATIC
22#define EV_H <ev.h> 24#define EV_H <ev.h>
23#define EV_CONFIG_H error 25#define EV_CONFIG_H error
24#include "EV/EVAPI.h" 26#include "EV/EVAPI.h"
25 27
26#define EV_SELECT_IS_WINSOCKET 0 28#define EV_SELECT_IS_WINSOCKET 0
30# define fd_mask Perl_fd_mask 32# define fd_mask Perl_fd_mask
31#endif 33#endif
32/* due to bugs in OS X we have to use libev/ explicitly here */ 34/* due to bugs in OS X we have to use libev/ explicitly here */
33#include "libev/ev.c" 35#include "libev/ev.c"
34 36
35#if !defined(_WIN32) && !defined(_MINIX) 37#if !defined _WIN32 && !defined _MINIX
36# include <pthread.h> 38# include <pthread.h>
37#endif 39#endif
38 40
39#define e_loop(w) INT2PTR (struct ev_loop *, SvIVX (((ev_watcher *)(w))->loop)) 41#define e_loop(w) INT2PTR (struct ev_loop *, SvIVX (((ev_watcher *)(w))->loop))
40#define e_flags(w) ((ev_watcher *)(w))->e_flags 42#define e_flags(w) ((ev_watcher *)(w))->e_flags
129///////////////////////////////////////////////////////////////////////////// 131/////////////////////////////////////////////////////////////////////////////
130// Event 132// Event
131 133
132static void e_cb (EV_P_ ev_watcher *w, int revents); 134static void e_cb (EV_P_ ev_watcher *w, int revents);
133 135
134void * 136static void *
135e_new (int size, SV *cb_sv, SV *loop) 137e_new (int size, SV *cb_sv, SV *loop)
136{ 138{
137 SV *cv = cb_sv ? s_get_cv_croak (cb_sv) : 0; 139 SV *cv = cb_sv ? s_get_cv_croak (cb_sv) : 0;
138 ev_watcher *w; 140 ev_watcher *w;
139 SV *self = NEWSV (0, size); 141 SV *self = NEWSV (0, size);
422 const_iv (EV, UNLOOP_ONE) 424 const_iv (EV, UNLOOP_ONE)
423 const_iv (EV, UNLOOP_ALL) 425 const_iv (EV, UNLOOP_ALL)
424#endif 426#endif
425 }; 427 };
426 428
427 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 429 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ > const_iv; civ--)
428 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 430 newCONSTSUB (stash, (char *)civ[-1].name, newSViv (civ[-1].iv));
429 431
430 stash_loop = gv_stashpv ("EV::Loop" , 1); 432 stash_loop = gv_stashpv ("EV::Loop" , 1);
431 stash_watcher = gv_stashpv ("EV::Watcher" , 1); 433 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
432 stash_io = gv_stashpv ("EV::IO" , 1); 434 stash_io = gv_stashpv ("EV::IO" , 1);
433 stash_timer = gv_stashpv ("EV::Timer" , 1); 435 stash_timer = gv_stashpv ("EV::Timer" , 1);
516 evapi.invoke = ev_invoke; 518 evapi.invoke = ev_invoke;
517 519
518 sv_setiv (sv, (IV)&evapi); 520 sv_setiv (sv, (IV)&evapi);
519 SvREADONLY_on (sv); 521 SvREADONLY_on (sv);
520 } 522 }
521#if !defined(_WIN32) && !defined(_MINIX) 523#if !defined _WIN32 && !defined _MINIX
522 pthread_atfork (0, 0, default_fork); 524 pthread_atfork (0, 0, default_fork);
523#endif 525#endif
524} 526}
525 527
526SV *ev_default_loop (unsigned int flags = 0) 528SV *ev_default_loop (unsigned int flags = 0)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines