diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-10-20 09:59:48 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-10-20 09:59:48 -0400 |
commit | 78cbced45cd244c8aab84e6fb8087b852769f5bc (patch) | |
tree | 6c3e86442d934554f4a99e8ae4d87671eaf10175 /src/or/main.h | |
parent | 35746a9ee75608e7b2393e4519adca602bf2615f (diff) | |
download | tor-78cbced45cd244c8aab84e6fb8087b852769f5bc.tar.gz tor-78cbced45cd244c8aab84e6fb8087b852769f5bc.zip |
Rename "tell_event_loop_to_finish" to "...run_external_code"
This function was never about 'finishing' the event loop, but rather
about making sure that the code outside the event loop would be run
at least once.
Diffstat (limited to 'src/or/main.h')
-rw-r--r-- | src/or/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.h b/src/or/main.h index 132ab12bbb..808aa14143 100644 --- a/src/or/main.h +++ b/src/or/main.h @@ -45,7 +45,7 @@ int connection_is_writing(connection_t *conn); MOCK_DECL(void,connection_stop_writing,(connection_t *conn)); MOCK_DECL(void,connection_start_writing,(connection_t *conn)); -void tell_event_loop_to_finish(void); +void tell_event_loop_to_run_external_code(void); void connection_stop_reading_from_linked_conn(connection_t *conn); |