From 017ca1efe71967e04396d8844f1a8499f53009d1 Mon Sep 17 00:00:00 2001 From: YuQing <384681@qq.com> Date: Sun, 16 Nov 2025 16:54:16 +0800 Subject: [PATCH] comment out useless codes --- src/ioevent_loop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ioevent_loop.c b/src/ioevent_loop.c index 7590c8f..7f5dbb4 100644 --- a/src/ioevent_loop.c +++ b/src/ioevent_loop.c @@ -240,7 +240,7 @@ int ioevent_loop(struct nio_thread_data *thread_data, } if (thread_data->deleted_list != NULL) { - count = 0; + //count = 0; while (thread_data->deleted_list != NULL) { task = thread_data->deleted_list; thread_data->deleted_list = task->next; @@ -254,7 +254,7 @@ int ioevent_loop(struct nio_thread_data *thread_data, } } clean_up_callback(task); - count++; + //count++; } //logInfo("cleanup task count: %d", count); }