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

Comparing EV/EV.xs (file contents):
Revision 1.54 by root, Tue Nov 6 12:31:20 2007 UTC vs.
Revision 1.56 by root, Tue Nov 6 16:09:37 2007 UTC

5/*#include <netinet/in.h>*/ 5/*#include <netinet/in.h>*/
6 6
7#define EV_PROTOTYPES 1 7#define EV_PROTOTYPES 1
8#include "EV/EVAPI.h" 8#include "EV/EVAPI.h"
9 9
10/* fix perl api breakage */
11#undef signal
12#undef sigaction
13
10/* due to bugs in OS X we have to use libev/ explicitly here */ 14/* due to bugs in OS X we have to use libev/ explicitly here */
11#include "libev/ev.c" 15#include "libev/ev.c"
12#include "event.c" 16#include "event.c"
17
18#ifndef WIN32
13#define DNS_USE_GETTIMEOFDAY_FOR_ID 1 19#define DNS_USE_GETTIMEOFDAY_FOR_ID 1
14#if !defined (WIN32) && !defined(__CYGWIN__) 20#if !defined (WIN32) && !defined(__CYGWIN__)
15# define HAVE_STRUCT_IN6_ADDR 1 21# define HAVE_STRUCT_IN6_ADDR 1
16#endif 22#endif
17#undef HAVE_STRTOK_R 23#undef HAVE_STRTOK_R
18#undef strtok_r 24#undef strtok_r
19#define strtok_r fake_strtok_r 25#define strtok_r fake_strtok_r
20#include "evdns.c" 26#include "evdns.c"
27#endif
28
29#ifndef WIN32
30# include <pthread.h>
31#endif
21 32
22typedef int Signal; 33typedef int Signal;
23 34
24static struct EVAPI evapi; 35static struct EVAPI evapi;
25 36
96 w->self = self; 107 w->self = self;
97 108
98 return (void *)w; 109 return (void *)w;
99} 110}
100 111
101static void * 112static void
102e_destroy (void *w_) 113e_destroy (void *w_)
103{ 114{
104 struct ev_watcher *w = w_; 115 struct ev_watcher *w = w_;
105 116
106 SvREFCNT_dec (w->fh ); w->fh = 0; 117 SvREFCNT_dec (w->fh ); w->fh = 0;
169} 180}
170 181
171///////////////////////////////////////////////////////////////////////////// 182/////////////////////////////////////////////////////////////////////////////
172// DNS 183// DNS
173 184
185#ifndef WIN32
174static void 186static void
175dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg) 187dns_cb (int result, char type, int count, int ttl, void *addresses, void *arg)
176{ 188{
177 dSP; 189 dSP;
178 SV *cb = (SV *)arg; 190 SV *cb = (SV *)arg;
217 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR); 229 call_sv (get_sv ("EV::DIED", 1), G_DISCARD | G_VOID | G_EVAL | G_KEEPERR);
218 } 230 }
219 231
220 LEAVE; 232 LEAVE;
221} 233}
234#endif
222 235
223#define CHECK_REPEAT(repeat) if (repeat < 0.) \ 236#define CHECK_REPEAT(repeat) if (repeat < 0.) \
224 croak (# repeat " value must be >= 0"); 237 croak (# repeat " value must be >= 0");
225 238
226#define CHECK_FD(fh,fd) if ((fd) < 0) \ 239#define CHECK_FD(fh,fd) if ((fd) < 0) \
233 246
234PROTOTYPES: ENABLE 247PROTOTYPES: ENABLE
235 248
236BOOT: 249BOOT:
237{ 250{
238 int i;
239 HV *stash = gv_stashpv ("EV", 1); 251 HV *stash = gv_stashpv ("EV", 1);
240 252
241 static const struct { 253 static const struct {
242 const char *name; 254 const char *name;
243 IV iv; 255 IV iv;
316 evapi.child_stop = ev_child_stop; 328 evapi.child_stop = ev_child_stop;
317 329
318 sv_setiv (sv, (IV)&evapi); 330 sv_setiv (sv, (IV)&evapi);
319 SvREADONLY_on (sv); 331 SvREADONLY_on (sv);
320 } 332 }
321 333#ifndef WIN32
322 pthread_atfork (0, 0, ev_default_fork); 334 pthread_atfork (0, 0, ev_default_fork);
335#endif
323} 336}
324 337
325NV ev_now () 338NV ev_now ()
326 339
327int ev_method () 340int ev_method ()
718 rpid = 1 731 rpid = 1
719 CODE: 732 CODE:
720 RETVAL = ix ? w->rpid : w->rstatus; 733 RETVAL = ix ? w->rpid : w->rstatus;
721 OUTPUT: 734 OUTPUT:
722 RETVAL 735 RETVAL
736
737#ifndef WIN32
723 738
724MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_ 739MODULE = EV PACKAGE = EV::DNS PREFIX = evdns_
725 740
726BOOT: 741BOOT:
727{ 742{
852 867
853#void DESTROY (struct evhttp_request *req); 868#void DESTROY (struct evhttp_request *req);
854 869
855#endif 870#endif
856 871
872#endif
857 873
858 874
859 875
860 876
861 877

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines