change req_count from int to int64_t

pull/1/head
yuqing 2014-07-23 17:39:04 +08:00
parent dd42d9c08c
commit 3077eb6a65
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
Version 1.06 2014-07-14
Version 1.06 2014-07-23
* update source code from FastDFS V5.02
* add function short2buff and buff2short
* add object memory pool (fast_mblock.h and fast_mblock.c)
@ -16,6 +16,7 @@ Version 1.06 2014-07-14
* bug fixed: connection pool should NOT increase counter when connect fail
* logger.c do NOT call fsync after write
* sockopt.c add tcprecvdata_nb_ms to support millisecond timeout
* change req_count from int to int64_t
Version 1.05 2012-07-08
* update source code from FastDFS V3.09

View File

@ -54,7 +54,7 @@ struct fast_task_info
int size; //alloc size
int length; //data length
int offset; //current offset
int req_count; //request count
int64_t req_count; //request count
TaskFinishCallback finish_callback;
struct nio_thread_data *thread_data;
struct fast_task_info *next;