On 25/06/2012, at 19:11, Fedor Indutny wrote > On Tue, Jun 26, 2012 at 12:04 AM, Jorge <[email protected]> wrote: >> On 25/06/2012, at 18:28, Fedor Indutny wrote: >>> >>> You should try using: >>> >>> uv_async_init(uv_default_loop(), &async_watcher, AsyncCallback); >>> uv_async_send(uv_default_loop(), &async_watcher); >> >> [x] DONE (thank you!) :-P >> >> What does replace >> >> ev_async_start(EV_DEFAULT_UC_ &thread->async_watcher); >> >> and >> >> ev_async_stop(EV_DEFAULT_UC_ &thread->async_watcher); >> >> ? > > start is performed automatically, stop may be done via > uv_close((uv_handle_t*)&async_watcher, NULL).
[x] DONE (and it seems to work fine...) Thank you very much! Cheers, -- Jorge.
