diff options
author | Matt Traudt <sirmatt@ksu.edu> | 2017-09-12 22:12:24 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2017-09-15 11:40:59 -0400 |
commit | 61fc9c41ad8241be06587f28d1542c0caba55d1b (patch) | |
tree | 6849cada35055b1c5da9300389168efc38cebf50 /src/or/scheduler_vanilla.c | |
parent | 6e598bbcd8ee5b0dfec8f6713679988294cb2523 (diff) | |
download | tor-61fc9c41ad8241be06587f28d1542c0caba55d1b.tar.gz tor-61fc9c41ad8241be06587f28d1542c0caba55d1b.zip |
sched: switch to monotonic time; add/fix comments, style, and logs msgs
Diffstat (limited to 'src/or/scheduler_vanilla.c')
-rw-r--r-- | src/or/scheduler_vanilla.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/scheduler_vanilla.c b/src/or/scheduler_vanilla.c index a5e104e97b..d35b48c745 100644 --- a/src/or/scheduler_vanilla.c +++ b/src/or/scheduler_vanilla.c @@ -17,6 +17,7 @@ /* Maximum cells to flush in a single call to channel_flush_some_cells(); */ #define MAX_FLUSH_CELLS 1000 +/* Stores the vanilla scheduler function pointers. */ static scheduler_t *vanilla_scheduler = NULL; /***************************************************************************** |