diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-12-11 11:20:40 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-03-24 08:32:17 -0400 | 
| commit | 2453d15dbf7fff2d897c2182886486732be8ac35 (patch) | |
| tree | 7a054859acf25689f67d5df7aa9d50b20bca4b62 /babeld | |
| parent | 5f6eaa9b9668f3f09fbf6b1dc4e0645e07f641c9 (diff) | |
*: Convert struct thread_master to struct event_master and it's ilk
Convert the `struct thread_master` to `struct event_master`
across the code base.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'babeld')
| -rw-r--r-- | babeld/babel_main.c | 2 | ||||
| -rw-r--r-- | babeld/babel_main.h | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/babeld/babel_main.c b/babeld/babel_main.c index de0c8230fc..b4087bb792 100644 --- a/babeld/babel_main.c +++ b/babeld/babel_main.c @@ -37,7 +37,7 @@ static void babel_exit_properly(void);  static void babel_save_state_file(void); -struct thread_master *master;     /* quagga's threads handler */ +struct event_master *master;	  /* quagga's threads handler */  struct timeval babel_now;         /* current time             */  unsigned char myid[8];            /* unique id (mac address of an interface) */ diff --git a/babeld/babel_main.h b/babeld/babel_main.h index 659ddc70cf..30d1729c6e 100644 --- a/babeld/babel_main.h +++ b/babeld/babel_main.h @@ -9,7 +9,7 @@ Copyright 2011 by Matthieu Boutier and Juliusz Chroboczek  #include "vty.h"  extern struct timeval babel_now;         /* current time             */ -extern struct thread_master *master;     /* quagga's threads handler */ +extern struct event_master *master;	 /* quagga's threads handler */  extern int debug;  extern int resend_delay;  | 
