diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-12-11 07:51:16 -0500 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-03-24 08:32:17 -0400 | 
| commit | de2754be3a2658363828eeb3a83579ad3bad0f99 (patch) | |
| tree | 425608f8acab16eb4914148f8262db241dd82edf /lib/libfrr.c | |
| parent | 2ccccdf5d0b5912afab9d5aad184013efc30fb48 (diff) | |
*: Convert thread_fetch and thread_call to event_fetch and event_call
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'lib/libfrr.c')
| -rw-r--r-- | lib/libfrr.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libfrr.c b/lib/libfrr.c index 9a57c2313c..17f2bb1bdf 100644 --- a/lib/libfrr.c +++ b/lib/libfrr.c @@ -1181,8 +1181,8 @@ void frr_run(struct thread_master *master)  	zlog_startup_end();  	struct event thread; -	while (thread_fetch(master, &thread)) -		thread_call(&thread); +	while (event_fetch(master, &thread)) +		event_call(&thread);  }  void frr_early_fini(void)  | 
