it sound like the common server model, not libuv async model. but you can create thread use uv_thread_create, if it just a small task you also can use uv_walk to hold it.
在 2015年12月31日星期四 UTC+8上午3:33:19,Peter Hodur写道: > > Hello, could someone help me to find some example how to deal fork() with > libuv? > > I need to write server which binds some port, after it receives connection > it forks child (fork and then exec in child) and when childs c some binary > it sends some data to it. > > I do not know how to fork in async way > > Thanks -- You received this message because you are subscribed to the Google Groups "libuv" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/libuv. For more options, visit https://groups.google.com/d/optout.
