diff options
author | root <root> | 2007-11-04 00:39:24 +0000 |
---|---|---|
committer | root <root> | 2007-11-04 00:39:24 +0000 |
commit | 3676840bf4d472af68b38be10c47665d4bc451cf (patch) | |
tree | 393b74be7a54f41755411a22bc601ef86f9d7fdd /ev.c | |
parent | 678c8c54d0ce967d8f1db3e575aed61879279975 (diff) |
multiplicity, work around bugs in http.c etc.
Diffstat (limited to 'ev.c')
-rw-r--r-- | ev.c | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -132,7 +132,7 @@ typedef struct int events; } ANPENDING; -#ifdef EV_MULTIPLICITY +#if EV_MULTIPLICITY struct ev_loop { @@ -544,7 +544,7 @@ ev_method (EV_P) return method; } -static void +inline int loop_init (EV_P_ int methods) { if (!method) @@ -603,16 +603,19 @@ loop_init (EV_P_ int methods) return method; } -#ifdef EV_MULTIPLICITY +#if EV_MULTIPLICITY struct ev_loop * ev_loop_new (int methods) { struct ev_loop *loop = (struct ev_loop *)calloc (1, sizeof (struct ev_loop)); - loop_init (EV_A_ methods); + if (loop_init (EV_A_ methods)) + return loop; - return loop; + ev_loop_delete (loop); + + return 0; } void @@ -627,7 +630,7 @@ ev_loop_delete (EV_P) int ev_init (int methods) { - loop_init (); + return loop_init (methods); } #endif |