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

Comparing EV/EV.xs (file contents):
Revision 1.152 by root, Thu Dec 30 07:43:03 2010 UTC vs.
Revision 1.158 by root, Thu Jan 19 17:55:23 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
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);
401 const_iv (EV, BACKEND_EPOLL) 403 const_iv (EV, BACKEND_EPOLL)
402 const_iv (EV, BACKEND_KQUEUE) 404 const_iv (EV, BACKEND_KQUEUE)
403 const_iv (EV, BACKEND_DEVPOLL) 405 const_iv (EV, BACKEND_DEVPOLL)
404 const_iv (EV, BACKEND_PORT) 406 const_iv (EV, BACKEND_PORT)
405 const_iv (EV, BACKEND_ALL) 407 const_iv (EV, BACKEND_ALL)
408 const_iv (EV, BACKEND_MASK)
406 const_iv (EV, FLAG_AUTO) 409 const_iv (EV, FLAG_AUTO)
407 const_iv (EV, FLAG_FORKCHECK) 410 const_iv (EV, FLAG_FORKCHECK)
408 const_iv (EV, FLAG_SIGNALFD) 411 const_iv (EV, FLAG_SIGNALFD)
412 const_iv (EV, FLAG_NOSIGMASK)
409 const_iv (EV, FLAG_NOENV) 413 const_iv (EV, FLAG_NOENV)
410 const_iv (EV, FLAG_NOINOTIFY) 414 const_iv (EV, FLAG_NOINOTIFY)
411 415
412 const_iv (EV_, VERSION_MAJOR) 416 const_iv (EV_, VERSION_MAJOR)
413 const_iv (EV_, VERSION_MINOR) 417 const_iv (EV_, VERSION_MINOR)
420 const_iv (EV, UNLOOP_ONE) 424 const_iv (EV, UNLOOP_ONE)
421 const_iv (EV, UNLOOP_ALL) 425 const_iv (EV, UNLOOP_ALL)
422#endif 426#endif
423 }; 427 };
424 428
425 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--)
426 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 430 newCONSTSUB (stash, (char *)civ[-1].name, newSViv (civ[-1].iv));
427 431
428 stash_loop = gv_stashpv ("EV::Loop" , 1); 432 stash_loop = gv_stashpv ("EV::Loop" , 1);
429 stash_watcher = gv_stashpv ("EV::Watcher" , 1); 433 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
430 stash_io = gv_stashpv ("EV::IO" , 1); 434 stash_io = gv_stashpv ("EV::IO" , 1);
431 stash_timer = gv_stashpv ("EV::Timer" , 1); 435 stash_timer = gv_stashpv ("EV::Timer" , 1);
553 557
554void ev_sleep (NV interval) 558void ev_sleep (NV interval)
555 559
556NV ev_time () 560NV ev_time ()
557 561
562void ev_feed_signal (SV *signal)
563 CODE:
564{
565 Signal signum = s_signum (signal);
566 CHECK_SIG (signal, signum);
567
568 ev_feed_signal (signum);
569}
570
558NV ev_now () 571NV ev_now ()
559 C_ARGS: evapi.default_loop 572 C_ARGS: evapi.default_loop
560 573
561void ev_now_update () 574void ev_now_update ()
562 C_ARGS: evapi.default_loop 575 C_ARGS: evapi.default_loop

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines