diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-12-11 08:06:25 -0500 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2023-03-24 08:32:17 -0400 |
| commit | 8c1186d38e9226e29bb6eed0745a7638a7f66e5b (patch) | |
| tree | fba237046e948542dc33ed9db73d12b35f4e9581 /lib/wheel.c | |
| parent | ba7d2705d6ee53b8bb897800fa7dbad01b48602a (diff) | |
*: 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 27e087efc6..9ba122e826 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, |
