Is there a wrapper for libuv?

2012-03-06 Thread Tyler Jameson Little
I hope this is the right place to ask this. libuv is the evented IO library that nodejs uses internally. It is basically glue for a bunch of other libraries (libev, c-ares, libeio and others). https://github.com/joyent/libuv Is there already working on a wrapper? I would very much like to u

Re: Is there a wrapper for libuv?

2012-03-06 Thread James Miller
On 7 March 2012 13:52, Tyler Jameson Little wrote: > I hope this is the right place to ask this. > > libuv is the evented IO library that nodejs uses internally. It is basically > glue for a bunch of other libraries (libev, c-ares, libeio and others). > > https://github.com/joyent/libuv > > Is the

Re: Is there a wrapper for libuv?

2012-03-06 Thread Tyler Jameson Little
You shouldn't have to do anything with them, just write bindings for the api, with all the correct types. -- James Miller Thanks! I guess I got a little over-zealous in porting stuff over. I just need to create extern (C) bindings for the functions that will be used, right?

Re: Is there a wrapper for libuv?

2012-03-06 Thread James Miller
On 7 March 2012 14:47, Tyler Jameson Little wrote: > >> You shouldn't have to do anything with them, just write bindings for >> the api, with all the correct types. >> >> -- >> James Miller > > > Thanks! I guess I got a little over-zealous in porting stuff over. I just > need to create extern (C)