1
0
Fork 0
mirror of https://github.com/latchset/libverto.git synced 2025-12-05 22:47:04 +00:00
Offical repository for libverto, an async event loop abstraction library
Find a file
Robbie Harwood 0dc4e8f1fc Add Contributor Covenant's code of conduct
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
2021-08-17 11:18:28 -04:00
.github/workflows [ci] Port to GitHub Actions 2020-07-23 17:11:56 -04:00
.settings api rewrite, with support for libev, libevent, glib, and tevent 2011-06-15 10:30:39 -04:00
m4 [core] add pthread locking support around the global state 2011-11-10 12:08:02 -05:00
src Fix use-after-free in verto_reinitialize() 2021-03-15 14:28:49 -04:00
tests Remove tevent support since tevent is broken 2021-03-15 13:50:35 -04:00
.gitignore Remove INSTALL file 2017-08-31 14:47:48 -04:00
AUTHORS Update project metadata 2021-03-15 13:50:17 -04:00
ChangeLog Update project metadata 2021-03-15 13:50:17 -04:00
ci.sh [ci] Port to GitHub Actions 2020-07-23 17:11:56 -04:00
CODE_OF_CONDUCT.md Add Contributor Covenant's code of conduct 2021-08-17 11:18:28 -04:00
configure.ac Fix bashisms in configure.ac 2021-06-23 10:29:55 -04:00
COPYING initial commit for design review 2011-06-09 13:07:12 -04:00
libverto-glib.pc.in Re-order pkgconfig for expected dependencies 2019-06-03 16:04:16 -04:00
libverto-libev.pc.in Re-order pkgconfig for expected dependencies 2019-06-03 16:04:16 -04:00
libverto-libevent.pc.in Re-order pkgconfig for expected dependencies 2019-06-03 16:04:16 -04:00
libverto.pc.in Re-order pkgconfig for expected dependencies 2019-06-03 16:04:16 -04:00
Makefile.am Remove tevent support since tevent is broken 2021-03-15 13:50:35 -04:00
NEWS Update project metadata 2021-03-15 13:50:17 -04:00
README put some docs in the README 2011-09-30 20:53:34 -04:00

                                   libverto
===============================================================================

libverto exists to solve an important problem: many applications and libraries
are unable to write asynchronous code because they are unable to pick an event
loop. This is particularly true of libraries who want to be useful to many
applications who use loops that do not integrate with one another or which
use home-grown loops. libverto provides a loop-neutral async api which allows
the library to expose asynchronous interfaces and offload the choice of the
main loop to the application.