… | |
… | |
267 | void ev_set_syserr_cb (void (*cb)(const char *msg)); |
267 | void ev_set_syserr_cb (void (*cb)(const char *msg)); |
268 | |
268 | |
269 | # if EV_MULTIPLICITY |
269 | # if EV_MULTIPLICITY |
270 | /* the default loop is the only one that handles signals and child watchers */ |
270 | /* the default loop is the only one that handles signals and child watchers */ |
271 | /* you can call this as often as you like */ |
271 | /* you can call this as often as you like */ |
272 | struct ev_loop *ev_default_loop (unsigned int flags); /* returns default loop */ |
272 | static struct ev_loop * |
|
|
273 | ev_default_loop (unsigned int flags) |
|
|
274 | { |
|
|
275 | extern struct ev_loop *ev_default_loop_ptr; |
|
|
276 | extern struct ev_loop *ev_default_loop_ (unsigned int flags); |
|
|
277 | |
|
|
278 | if (!ev_default_loop_ptr) |
|
|
279 | ev_default_loop_ (flags); |
|
|
280 | |
|
|
281 | return ev_default_loop_ptr; |
|
|
282 | } |
273 | |
283 | |
274 | /* create and destroy alternative loops that don't handle signals */ |
284 | /* create and destroy alternative loops that don't handle signals */ |
275 | struct ev_loop *ev_loop_new (unsigned int flags); |
285 | struct ev_loop *ev_loop_new (unsigned int flags); |
276 | void ev_loop_destroy (EV_P); |
286 | void ev_loop_destroy (EV_P); |
277 | void ev_loop_fork (EV_P); |
287 | void ev_loop_fork (EV_P); |