diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-05-20 14:19:08 -0400 | 
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-03-24 08:32:17 -0400 | 
| commit | 907a2395f423e3b97335d554557c2cef7195db84 (patch) | |
| tree | 18ea691bc5589fa570c739a9f221429633778ea9 /ospfd/ospf_lsa.c | |
| parent | e6685141aae8fc869d49cde1d459f73b87bbec89 (diff) | |
*: Convert thread_add_XXX functions to event_add_XXX
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'ospfd/ospf_lsa.c')
| -rw-r--r-- | ospfd/ospf_lsa.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/ospfd/ospf_lsa.c b/ospfd/ospf_lsa.c index 92ad9951ab..aa113b087a 100644 --- a/ospfd/ospf_lsa.c +++ b/ospfd/ospf_lsa.c @@ -3870,7 +3870,7 @@ void ospf_schedule_lsa_flood_area(struct ospf_area *area, struct ospf_lsa *lsa)  	data->area = area;  	data->lsa = ospf_lsa_lock(lsa); /* Message / Flood area */ -	thread_add_event(master, ospf_lsa_action, data, 0, NULL); +	event_add_event(master, ospf_lsa_action, data, 0, NULL);  }  void ospf_schedule_lsa_flush_area(struct ospf_area *area, struct ospf_lsa *lsa) @@ -3882,7 +3882,7 @@ void ospf_schedule_lsa_flush_area(struct ospf_area *area, struct ospf_lsa *lsa)  	data->area = area;  	data->lsa = ospf_lsa_lock(lsa); /* Message / Flush area */ -	thread_add_event(master, ospf_lsa_action, data, 0, NULL); +	event_add_event(master, ospf_lsa_action, data, 0, NULL);  } @@ -4091,8 +4091,8 @@ void ospf_lsa_refresh_walker(struct event *t)  	}  	ospf->t_lsa_refresher = NULL; -	thread_add_timer(master, ospf_lsa_refresh_walker, ospf, -			 ospf->lsa_refresh_interval, &ospf->t_lsa_refresher); +	event_add_timer(master, ospf_lsa_refresh_walker, ospf, +			ospf->lsa_refresh_interval, &ospf->t_lsa_refresher);  	ospf->lsa_refresher_started = monotime(NULL);  	for (ALL_LIST_ELEMENTS(lsa_to_refresh, node, nnode, lsa)) {  | 
