Libevent
| libevent | |
|---|---|
| Developers | Azat Khuzhin, Mark Ellzey, Nick Mathewson, Niels Provos |
| Initial release | April 9, 2002 |
| Stable release | 2.1.12
/ July 5, 2020[1] |
| Written in | C |
| Operating system | Cross-platform |
| Platform | Unix-like, Windows, OS X |
| Type | Network Library |
| License | BSD[2] |
| Website | libevent |
| Repository | |
libevent is a software library that provides asynchronous event notification. The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. libevent also supports callbacks triggered by signals and regular timeouts.
libevent is meant to replace the event loop found in event-driven network servers. An application can just call event_dispatch() and then add or remove events dynamically without having to change the event loop.
Currently, libevent supports /dev/poll, kqueue(2), POSIX select(2), Windows IOCP, poll(2), epoll(7) and Solaris event ports. It also has experimental support for real-time signals. The exposed event API is uniform over all of the supported platforms. As a result, libevent allows for portable application development and provides "the most scalable event notification mechanism available on an operating system".[1]
Using callbacks on signals, libevent makes it possible to write "secure" signal handlers as none of the user supplied signal handling code runs in the signal's context.
libevent was created by Niels Provos, and is maintained primarily by Azat Khuzhin. It is released under a BSD license.[3]
Notable applications
Some of the notable applications that take advantage of libevent are:[4]
- Chromium: Google's open-source web browser
- memcached: a high-performance, distributed memory object caching system
- Transmission: a fast, easy, and free BitTorrent client
- NTP: the network time protocol that makes your clock right (uses libevent in SNTP)
- tmux: a terminal multiplexer
- Tor: an anonymous Internet communication system
Alternatives
Major version releases
- libevent 2.1 was released on April 3, 2012.[5]
- libevent 2.0 was released on April 17, 2009.[5]
- libevent 1.4 was released on November 11, 2007.[5]
- libevent 1.3 was released on February 15, 2007.[5]
- libevent 1.2 was released on October 15, 2006.[5]
- libevent 1.1 was released on May 14, 2005.[5]
References
- ^ a b "libevent – an event notification library". libevent.org. Retrieved 17 September 2021.
- ^ "LICENSE". Github. Retrieved 30 August 2019.
- ^ http://www.monkey.org/~provos/libevent/LICENSE License of libevent
- ^ "An Event Notification Library, Programs using libevent". libevent.org. Retrieved 2026-01-01.
- ^ a b c d e f "Old releases". libevent.org. Retrieved 2025-11-13.
{{cite web}}: CS1 maint: url-status (link)
External links
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.