]> git.proxmox.com Git - mirror_frr.git/blobdiff - bgpd/bgp_dump.c
*: Rename `struct thread` to `struct event`
[mirror_frr.git] / bgpd / bgp_dump.c
index 6aad4ff2a7cbb2c598feb8cdf7239d7430c069c3..25e921cff263981dc4c036ca5718622cdcef823f 100644 (file)
@@ -69,11 +69,11 @@ struct bgp_dump {
 
        char *interval_str;
 
-       struct thread *t_interval;
+       struct event *t_interval;
 };
 
 static int bgp_dump_unset(struct bgp_dump *bgp_dump);
-static void bgp_dump_interval_func(struct thread *);
+static void bgp_dump_interval_func(struct event *);
 
 /* BGP packet dump output buffer. */
 struct stream *bgp_dump_obuf;
@@ -428,7 +428,7 @@ static unsigned int bgp_dump_routes_func(int afi, int first_run,
        return seq;
 }
 
-static void bgp_dump_interval_func(struct thread *t)
+static void bgp_dump_interval_func(struct event *t)
 {
        struct bgp_dump *bgp_dump;
        bgp_dump = THREAD_ARG(t);