diff options
author | Donald Sharp <sharpd@nvidia.com> | 2022-12-11 14:06:25 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@nvidia.com> | 2023-03-24 13:32:17 +0100 |
commit | 8c1186d38e9226e29bb6eed0745a7638a7f66e5b (patch) | |
tree | fba237046e948542dc33ed9db73d12b35f4e9581 /lib/wheel.c | |
parent | lib: Convert THREAD_YIELD_TIME_SLOT to EVENT_YIELD_TIME_SLOT (diff) | |
download | frr-8c1186d38e9226e29bb6eed0745a7638a7f66e5b.tar.xz frr-8c1186d38e9226e29bb6eed0745a7638a7f66e5b.zip |
*: Convert thread_execute to event_execute
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'lib/wheel.c')
-rw-r--r-- | lib/wheel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/wheel.c b/lib/wheel.c index 27e087efc..9ba122e82 100644 --- a/lib/wheel.c +++ b/lib/wheel.c @@ -57,7 +57,7 @@ static void wheel_timer_thread(struct event *t) wheel = THREAD_ARG(t); - thread_execute(wheel->master, wheel_timer_thread_helper, wheel, 0); + event_execute(wheel->master, wheel_timer_thread_helper, wheel, 0); } struct timer_wheel *wheel_init(struct thread_master *master, int period, |