]> git.proxmox.com Git - mirror_frr.git/blobdiff - pathd/path_ted.c
*: Convert thread_cancelXXX to event_cancelXXX
[mirror_frr.git] / pathd / path_ted.c
index bc0da969e3b0268a15474d985a5aa6b5a6bead76..91033360cce87c999a78ab508a0224ead04317b0 100644 (file)
@@ -28,8 +28,8 @@ static void path_ted_unregister_vty(void);
 static uint32_t path_ted_start_importing_igp(const char *daemon_str);
 static uint32_t path_ted_stop_importing_igp(void);
 static enum zclient_send_status path_ted_link_state_sync(void);
-static void path_ted_timer_handler_sync(struct thread *thread);
-static void path_ted_timer_handler_refresh(struct thread *thread);
+static void path_ted_timer_handler_sync(struct event *thread);
+static void path_ted_timer_handler_refresh(struct event *thread);
 static int path_ted_cli_debug_config_write(struct vty *vty);
 static int path_ted_cli_debug_set_all(uint32_t flags, bool set);
 
@@ -583,9 +583,9 @@ enum zclient_send_status path_ted_link_state_sync(void)
                PATH_TED_DEBUG("%s: PATHD-TED: Opaque asked for TED sync ",
                               __func__);
        }
-       thread_add_timer(ted_state_g.main, path_ted_timer_handler_sync,
-                        &ted_state_g, ted_state_g.link_state_delay_interval,
-                        &ted_state_g.t_link_state_sync);
+       event_add_timer(ted_state_g.main, path_ted_timer_handler_sync,
+                       &ted_state_g, ted_state_g.link_state_delay_interval,
+                       &ted_state_g.t_link_state_sync);
 
        return status;
 }
@@ -597,7 +597,7 @@ enum zclient_send_status path_ted_link_state_sync(void)
  *
  * @return             status
  */
-void path_ted_timer_handler_sync(struct thread *thread)
+void path_ted_timer_handler_sync(struct event *thread)
 {
        /* data unpacking */
        struct ted_state *data = THREAD_ARG(thread);
@@ -619,10 +619,9 @@ int path_ted_segment_list_refresh(void)
        int status = 0;
 
        path_ted_timer_refresh_cancel();
-       thread_add_timer(ted_state_g.main, path_ted_timer_handler_refresh,
-                        &ted_state_g,
-                        ted_state_g.segment_list_refresh_interval,
-                        &ted_state_g.t_segment_list_refresh);
+       event_add_timer(ted_state_g.main, path_ted_timer_handler_refresh,
+                       &ted_state_g, ted_state_g.segment_list_refresh_interval,
+                       &ted_state_g.t_segment_list_refresh);
 
        return status;
 }
@@ -634,7 +633,7 @@ int path_ted_segment_list_refresh(void)
  *
  * @return             status
  */
-void path_ted_timer_handler_refresh(struct thread *thread)
+void path_ted_timer_handler_refresh(struct event *thread)
 {
        if (!path_ted_is_initialized())
                return;
@@ -658,7 +657,7 @@ void path_ted_timer_handler_refresh(struct thread *thread)
 void path_ted_timer_sync_cancel(void)
 {
        if (ted_state_g.t_link_state_sync != NULL) {
-               thread_cancel(&ted_state_g.t_link_state_sync);
+               event_cancel(&ted_state_g.t_link_state_sync);
                ted_state_g.t_link_state_sync = NULL;
        }
 }
@@ -673,7 +672,7 @@ void path_ted_timer_sync_cancel(void)
 void path_ted_timer_refresh_cancel(void)
 {
        if (ted_state_g.t_segment_list_refresh != NULL) {
-               thread_cancel(&ted_state_g.t_segment_list_refresh);
+               event_cancel(&ted_state_g.t_segment_list_refresh);
                ted_state_g.t_segment_list_refresh = NULL;
        }
 }