diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-12-11 10:39:12 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-03-24 08:32:17 -0400 |
| commit | 70c35c11f2af5f169db446ef02ac0dda7b2822fc (patch) | |
| tree | 225495229380773b17c58f088e230cebf43b1b29 /zebra/zebra_fpm.c | |
| parent | 4f830a0799e74bd18af18e3ded5d6e16c79a7d56 (diff) | |
*: Convert thread_should_yield and thread_set_yield_time
Convert thread_should_yield and thread_set_yield_time
to event_should_yield and event_set_yield_time
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_fpm.c')
| -rw-r--r-- | zebra/zebra_fpm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_fpm.c b/zebra/zebra_fpm.c index a97873c384..d453c6f25c 100644 --- a/zebra/zebra_fpm.c +++ b/zebra/zebra_fpm.c @@ -285,7 +285,7 @@ union g_addr ipv4ll_gateway; */ static inline int zfpm_thread_should_yield(struct event *t) { - return thread_should_yield(t); + return event_should_yield(t); } /* |
