Compare commits
No commits in common. "c4b6f1fcb5bc04e61885e685a294f1450e6b8e18" and "71b2229427ceddf02d77b0cd8ac9cba0862bf752" have entirely different histories.
c4b6f1fcb5
...
71b2229427
|
|
@ -3,7 +3,7 @@
|
||||||
%define CommitVersion %(echo $COMMIT_VERSION)
|
%define CommitVersion %(echo $COMMIT_VERSION)
|
||||||
|
|
||||||
Name: libfastcommon
|
Name: libfastcommon
|
||||||
Version: 1.0.83
|
Version: 1.0.82
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: c common functions library extracted from my open source projects FastDFS
|
Summary: c common functions library extracted from my open source projects FastDFS
|
||||||
License: LGPL
|
License: LGPL
|
||||||
|
|
|
||||||
|
|
@ -240,7 +240,7 @@ int ioevent_loop(struct nio_thread_data *thread_data,
|
||||||
}
|
}
|
||||||
|
|
||||||
if (thread_data->deleted_list != NULL) {
|
if (thread_data->deleted_list != NULL) {
|
||||||
//count = 0;
|
count = 0;
|
||||||
while (thread_data->deleted_list != NULL) {
|
while (thread_data->deleted_list != NULL) {
|
||||||
task = thread_data->deleted_list;
|
task = thread_data->deleted_list;
|
||||||
thread_data->deleted_list = task->next;
|
thread_data->deleted_list = task->next;
|
||||||
|
|
@ -254,7 +254,7 @@ int ioevent_loop(struct nio_thread_data *thread_data,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
clean_up_callback(task);
|
clean_up_callback(task);
|
||||||
//count++;
|
count++;
|
||||||
}
|
}
|
||||||
//logInfo("cleanup task count: %d", count);
|
//logInfo("cleanup task count: %d", count);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue