summaryrefslogtreecommitdiff
path: root/src/common/timers.c
AgeCommit message (Collapse)Author
2018-06-20Update copyrights to 2018.Nick Mathewson
2018-04-09Prefer 32-bit implementation for timing wheels on 32-bit systems.Nick Mathewson
This might make our timing-wheel code a tiny bit faster there. Closes ticket 24688.
2018-04-05Add an API for a scheduled/manually activated event in the mainloopNick Mathewson
Using this API lets us remove event2/event.h usage from half a dozen modules, to better isolate libevent. Implements part of ticket 23750.
2018-02-07Fix spelling mistakes corresponding to ticket #23650Deepesh Pathak
2017-12-08Convert the rest of src/common's headers to use FREE_AND_NULLNick Mathewson
2017-09-15Merge branch 'scan-build-032'Nick Mathewson
2017-09-15Run our #else/#endif annotator on our source code.Nick Mathewson
2017-09-12Clear up dead-assignment warnings from scan-buildNick Mathewson
2017-09-11Extract the important parts of the run-pending-timers function.Nick Mathewson
Our unit tests will need this, so that they can simulate advancing time without getting libevent involved.
2017-03-15Run the copyright update script.Nick Mathewson
2016-12-02Add accessor for inspecting timer callbacks.Nick Mathewson
2016-07-19convert timers.c to use real monotonic time.Nick Mathewson
2016-07-04Raise libevent dependency to 2.0.10-stable or newerSebastian Hahn
Only some very ancient distributions don't ship with Libevent 2 anymore, even the oldest supported Ubuntu LTS version has it. This allows us to get rid of a lot of compat code.
2016-05-09Test coverage for timers.Nick Mathewson
2016-05-09Quick-and-dirty test for timers code.Nick Mathewson
2016-05-09Add wrappers to tie the new timeouts into libevent.Nick Mathewson