From 6d14ed3a18d04014a730add1935706b977e3539b Mon Sep 17 00:00:00 2001 From: Sergey Lyubka <valenok@gmail.com> Date: Wed, 28 Aug 2013 09:53:10 +0100 Subject: [PATCH] thread_setup -> thread_start --- mongoose.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mongoose.h b/mongoose.h index 0d9239558..553d88330 100644 --- a/mongoose.h +++ b/mongoose.h @@ -129,8 +129,8 @@ struct mg_callbacks { void (*thread_start)(void *user_data, void **conn_data); // Called when mongoose's thread is about to terminate. - // Same as thread_setup() callback, but called when thread is about to be - // destroyed. Used to cleanup the state initialized by thread_setup(). + // Same as thread_start() callback, but called when thread is about to be + // destroyed. Used to cleanup the state initialized by thread_start(). // Parameters: see thread_start(). void (*thread_stop)(void *user_data, void **conn_data); }; -- GitLab