1
0
Fork 0
mirror of https://github.com/latchset/libverto.git synced 2026-09-19 20:14:29 +00:00
Offical repository for libverto, an async event loop abstraction library
  • C 82.9%
  • M4 14.3%
  • Makefile 2.1%
  • Shell 0.7%
Find a file
Simo Sorce 8e944f22dc Remove CentOS 8 from CI matrix
Remove the centos:8 distribution target from the GitHub Actions CI workflow
matrix. CentOS 8 has reached its End of Life (EOL) and is no longer
maintained, making it obsolete for ongoing automated testing.

Signed-off-by: Simo Sorce <simo@redhat.com>
2026-06-18 18:19:36 +03:00
.github/workflows Remove CentOS 8 from CI matrix 2026-06-18 18:19:36 +03: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 Skip cleanup for built-in modules 2026-06-18 18:19:36 +03: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.