From 907a2395f423e3b97335d554557c2cef7195db84 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 20 May 2022 14:19:08 -0400 Subject: *: Convert thread_add_XXX functions to event_add_XXX Signed-off-by: Donald Sharp --- tests/helpers/c/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/helpers/c/main.c') diff --git a/tests/helpers/c/main.c b/tests/helpers/c/main.c index ae089398e..937a44520 100644 --- a/tests/helpers/c/main.c +++ b/tests/helpers/c/main.c @@ -38,12 +38,12 @@ static void test_timer(struct event *thread) int *count = THREAD_ARG(thread); printf("run %d of timer\n", (*count)++); - thread_add_timer(master, test_timer, count, 5, NULL); + event_add_timer(master, test_timer, count, 5, NULL); } static void test_timer_init(void) { - thread_add_timer(master, test_timer, &timer_count, 10, NULL); + event_add_timer(master, test_timer, &timer_count, 10, NULL); } static void test_vty_init(void) -- cgit v1.2.3