https://github.com/joyent/node/wiki/API-changes-between-v0.6-and-v0.8, 
especially two links in "Deprecated" section.

пятница, 31 августа 2012 г., 1:11:50 UTC+4 пользователь Pavi написал:
>
> Hi I get,
> WARNING: ev_unref is deprecated, use uv_unref Warning when i try to run my 
> Java script.
> I tried to changed my *.cc file as below 
> from,
>   ev_unref(EV_DEFAULR_UC) 
> To,
>
>  uv_async_t h;
>   uv_async_init(uv_default_loop(), &h, NULL);
>   uv_unref((uv_handle_t*)&h);
>
> But this once throws segmentation fault,And also trying as below
> from,
> ev_unref(EV_DEFAULR_UC) 
> To,
> uv_unref(uv_default_loop());
>
> Throws compilation error.
>
>
> Please let me know how to use uv_unref & uv_ref with Default handler
> Pavi
>

-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to nodejs@googlegroups.com
To unsubscribe from this group, send email to
nodejs+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

Reply via email to