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

Comparing EV/EV.xs (file contents):
Revision 1.153 by root, Mon Jan 10 01:59:41 2011 UTC vs.
Revision 1.157 by root, Fri Jul 29 08:35:36 2011 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
22#define EV_H <ev.h> 23#define EV_H <ev.h>
23#define EV_CONFIG_H error 24#define EV_CONFIG_H error
24#include "EV/EVAPI.h" 25#include "EV/EVAPI.h"
25 26
26#define EV_SELECT_IS_WINSOCKET 0 27#define EV_SELECT_IS_WINSOCKET 0
129///////////////////////////////////////////////////////////////////////////// 130/////////////////////////////////////////////////////////////////////////////
130// Event 131// Event
131 132
132static void e_cb (EV_P_ ev_watcher *w, int revents); 133static void e_cb (EV_P_ ev_watcher *w, int revents);
133 134
134void * 135static void *
135e_new (int size, SV *cb_sv, SV *loop) 136e_new (int size, SV *cb_sv, SV *loop)
136{ 137{
137 SV *cv = cb_sv ? s_get_cv_croak (cb_sv) : 0; 138 SV *cv = cb_sv ? s_get_cv_croak (cb_sv) : 0;
138 ev_watcher *w; 139 ev_watcher *w;
139 SV *self = NEWSV (0, size); 140 SV *self = NEWSV (0, size);
422 const_iv (EV, UNLOOP_ONE) 423 const_iv (EV, UNLOOP_ONE)
423 const_iv (EV, UNLOOP_ALL) 424 const_iv (EV, UNLOOP_ALL)
424#endif 425#endif
425 }; 426 };
426 427
427 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--)
428 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 429 newCONSTSUB (stash, (char *)civ[-1].name, newSViv (civ[-1].iv));
429 430
430 stash_loop = gv_stashpv ("EV::Loop" , 1); 431 stash_loop = gv_stashpv ("EV::Loop" , 1);
431 stash_watcher = gv_stashpv ("EV::Watcher" , 1); 432 stash_watcher = gv_stashpv ("EV::Watcher" , 1);
432 stash_io = gv_stashpv ("EV::IO" , 1); 433 stash_io = gv_stashpv ("EV::IO" , 1);
433 stash_timer = gv_stashpv ("EV::Timer" , 1); 434 stash_timer = gv_stashpv ("EV::Timer" , 1);
555 556
556void ev_sleep (NV interval) 557void ev_sleep (NV interval)
557 558
558NV ev_time () 559NV ev_time ()
559 560
561void ev_feed_signal (SV *signal)
562 CODE:
563{
564 Signal signum = s_signum (signal);
565 CHECK_SIG (signal, signum);
566
567 ev_feed_signal (signum);
568}
569
560NV ev_now () 570NV ev_now ()
561 C_ARGS: evapi.default_loop 571 C_ARGS: evapi.default_loop
562 572
563void ev_now_update () 573void ev_now_update ()
564 C_ARGS: evapi.default_loop 574 C_ARGS: evapi.default_loop

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines