comment out useless codes

master
YuQing 2025-11-16 16:54:16 +08:00
parent 71b2229427
commit 017ca1efe7
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}