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

Comparing EV/EV.xs (file contents):
Revision 1.63 by root, Sat Nov 10 03:19:21 2007 UTC vs.
Revision 1.67 by root, Mon Nov 12 21:51:14 2007 UTC

9 9
10/* fix perl api breakage */ 10/* fix perl api breakage */
11#undef signal 11#undef signal
12#undef sigaction 12#undef sigaction
13 13
14#define EV_SELECT_USE_WIN32_HANDLES 0 14#define EV_SELECT_IS_WINSOCKET 0
15#ifdef _WIN32
15#define EV_SELECT_USE_FD_SET 0 16# define EV_SELECT_USE_FD_SET 0
17# define NFDBITS PERL_NFDBITS
18# define fd_mask Perl_fd_mask
19#endif
16/* due to bugs in OS X we have to use libev/ explicitly here */ 20/* due to bugs in OS X we have to use libev/ explicitly here */
17#include "libev/ev.c" 21#include "libev/ev.c"
18#include "event.c" 22#include "event.c"
19 23
20#ifndef WIN32 24#ifndef _WIN32
21#define DNS_USE_GETTIMEOFDAY_FOR_ID 1 25#define DNS_USE_GETTIMEOFDAY_FOR_ID 1
22#if !defined (WIN32) && !defined(__CYGWIN__) 26#if !defined (WIN32) && !defined(__CYGWIN__)
23# define HAVE_STRUCT_IN6_ADDR 1 27# define HAVE_STRUCT_IN6_ADDR 1
24#endif 28#endif
25#undef HAVE_STRTOK_R 29#undef HAVE_STRTOK_R
27#define strtok_r fake_strtok_r 31#define strtok_r fake_strtok_r
28#include "evdns.h" 32#include "evdns.h"
29#include "evdns.c" 33#include "evdns.c"
30#endif 34#endif
31 35
32#ifndef WIN32 36#ifndef _WIN32
33# include <pthread.h> 37# include <pthread.h>
34#endif 38#endif
35 39
36typedef int Signal; 40typedef int Signal;
37 41
228} 232}
229 233
230///////////////////////////////////////////////////////////////////////////// 234/////////////////////////////////////////////////////////////////////////////
231// DNS 235// DNS
232 236
233#ifndef WIN32 237#ifndef _WIN32
234static void 238static void
235dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg) 239dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg)
236{ 240{
237 dSP; 241 dSP;
238 SV *cb = (SV *)arg; 242 SV *cb = (SV *)arg;
316 const_iv (EV_, CHECK) 320 const_iv (EV_, CHECK)
317 const_iv (EV_, ERROR) 321 const_iv (EV_, ERROR)
318 322
319 const_iv (EV, LOOP_ONESHOT) 323 const_iv (EV, LOOP_ONESHOT)
320 const_iv (EV, LOOP_NONBLOCK) 324 const_iv (EV, LOOP_NONBLOCK)
325 const_iv (EV, UNLOOP_ONE)
326 const_iv (EV, UNLOOP_ALL)
321 327
322 const_iv (EV, METHOD_AUTO)
323 const_iv (EV, METHOD_SELECT) 328 const_iv (EV, METHOD_SELECT)
324 const_iv (EV, METHOD_POLL) 329 const_iv (EV, METHOD_POLL)
325 const_iv (EV, METHOD_EPOLL) 330 const_iv (EV, METHOD_EPOLL)
326 const_iv (EV, METHOD_KQUEUE) 331 const_iv (EV, METHOD_KQUEUE)
327 const_iv (EV, METHOD_DEVPOLL) 332 const_iv (EV, METHOD_DEVPOLL)
328 const_iv (EV, METHOD_PORT) 333 const_iv (EV, METHOD_PORT)
329 const_iv (EV, METHOD_ANY) 334 const_iv (EV, FLAG_AUTO)
335 const_iv (EV, FLAG_NOENV)
330 }; 336 };
331 337
332 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; ) 338 for (civ = const_iv + sizeof (const_iv) / sizeof (const_iv [0]); civ-- > const_iv; )
333 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv)); 339 newCONSTSUB (stash, (char *)civ->name, newSViv (civ->iv));
334 340
376 evapi.child_stop = ev_child_stop; 382 evapi.child_stop = ev_child_stop;
377 383
378 sv_setiv (sv, (IV)&evapi); 384 sv_setiv (sv, (IV)&evapi);
379 SvREADONLY_on (sv); 385 SvREADONLY_on (sv);
380 } 386 }
381#ifndef WIN32 387#ifndef _WIN32
382 pthread_atfork (0, 0, ev_default_fork); 388 pthread_atfork (0, 0, ev_default_fork);
383#endif 389#endif
384} 390}
385 391
386NV ev_now () 392NV ev_now ()
387 393
388int ev_method () 394int ev_method ()
389 395
390NV ev_time () 396NV ev_time ()
391 397
392int ev_default_loop (int methods = EVMETHOD_AUTO) 398int ev_default_loop (int methods = EVFLAG_AUTO)
393 399
394void ev_loop (int flags = 0) 400void ev_loop (int flags = 0)
395 401
396void ev_unloop (int how = 1) 402void ev_unloop (int how = 1)
397 403
797 CODE: 803 CODE:
798 RETVAL = ix ? w->rpid : w->rstatus; 804 RETVAL = ix ? w->rpid : w->rstatus;
799 OUTPUT: 805 OUTPUT:
800 RETVAL 806 RETVAL
801 807
802#ifndef WIN32 808#ifndef _WIN32
803 809
804MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 810MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
805 811
806BOOT: 812BOOT:
807{ 813{
878 884
879int evdns_set_option (char *option, char *val, int flags) 885int evdns_set_option (char *option, char *val, int flags)
880 886
881int evdns_resolv_conf_parse (int flags, const char *filename) 887int evdns_resolv_conf_parse (int flags, const char *filename)
882 888
883#ifdef MS_WINDOWS 889#ifdef _WIN32
884 890
885int evdns_config_windows_nameservers () 891int evdns_config_windows_nameservers ()
886 892
887#endif 893#endif
888 894

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines