Compare commits

...

2 Commits

Author SHA1 Message Date
YuQing c4b6f1fcb5 upgrade version to 1.0.83 2025-11-16 17:00:25 +08:00
YuQing 017ca1efe7 comment out useless codes 2025-11-16 16:54:16 +08:00
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@
%define CommitVersion %(echo $COMMIT_VERSION)
Name: libfastcommon
Version: 1.0.82
Version: 1.0.83
Release: 1%{?dist}
Summary: c common functions library extracted from my open source projects FastDFS
License: LGPL

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