]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove tell_event_loop_to_run_external_code() per review
authorNick Mathewson <nickm@torproject.org>
Fri, 13 Apr 2018 16:11:22 +0000 (12:11 -0400)
committerNick Mathewson <nickm@torproject.org>
Fri, 13 Apr 2018 16:11:22 +0000 (12:11 -0400)
(This function is no longer used.)

src/or/main.c
src/or/main.h

index 257af8b18c80df462776f3af06e2e4560e6aa677..074746108e8889d87bcec274a8c09f63cbd876ea 100644 (file)
@@ -731,20 +731,6 @@ connection_should_read_from_linked_conn(connection_t *conn)
   return 0;
 }
 
-/** If we called event_base_loop() and told it to never stop until it
- * runs out of events, now we've changed our mind: tell it we want it to
- * exit once the current round of callbacks is done, so that we can
- * run external code, and then return to the main loop. */
-void
-tell_event_loop_to_run_external_code(void)
-{
-  if (!called_loop_once) {
-    struct timeval tv = { 0, 0 };
-    tor_libevent_exit_loop_after_delay(tor_libevent_get_base(), &tv);
-    called_loop_once = 1; /* hack to avoid adding more exit events */
-  }
-}
-
 /** Event to run 'shutdown did not work callback'. */
 static struct event *shutdown_did_not_work_event = NULL;
 
index f01506fceafc54f3d55a1535ffcf9368642805bf..5ca435064d8203eeecceea757b5bf8b0dbd2e2b4 100644 (file)
@@ -45,7 +45,6 @@ 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_run_external_code(void);
 void tor_shutdown_event_loop_and_exit(int exitcode);
 int tor_event_loop_shutdown_is_pending(void);