Compare commits

..

No commits in common. "c4b6f1fcb5bc04e61885e685a294f1450e6b8e18" and "71b2229427ceddf02d77b0cd8ac9cba0862bf752" have entirely different histories.

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.83
Version: 1.0.82
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);
}