libev icon indicating copy to clipboard operation
libev copied to clipboard

Full-featured high-performance event loop loosely modelled after libevent

Results 16 libev issues
Sort by recently updated
recently updated
newest added

How do you compile it on windows? Does it require compiling? Thanks.

Hi, guy I am adapting libev to QNX 7.1 recently, but, the interface statfs() is diffrent to QNX, I would appreciate your help. Best Regards

When using with C++17 I got the following error: ev++.h:355:46: error: ISO C++1z does not allow dynamic exception specifications dynamic_loop (unsigned int flags = AUTO) throw (bad_loop) This patch fixes...

I used libev in my project in windows but I git this error: "libev: only socket fds supported in this configuration", ioctlsocket (handle, FIONREAD, &arg) == 0 Please help me...

Hi I am getting "epoll_wait: Bad file descriptor". this causes my application to close.

Hi,I have a doubt,Usually the udp connection is always writable,but If I add the udp connection write event to epoll via ev_io_start, then when can trigger a writable event ?

I am confused about this line of code: ````c #define VARx(type,name) VAR(name, type name) ```` I searched the entire project, and can‘t find definition of macro **VAR(name, type name)**, could...

after patch, successfully compiled using: arm-linux-androideabi-gcc (GCC) 4.9.x 20150123 (prerelease)

I watch a file via inotify, when it is updated, i open it via ev_io_init(..), and ev_io_start(); when all data is read, i close the file ev_io_stop(..), close(fd) if a...