change req_count from int to int64_t
parent
dd42d9c08c
commit
3077eb6a65
3
HISTORY
3
HISTORY
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
Version 1.06 2014-07-14
|
Version 1.06 2014-07-23
|
||||||
* update source code from FastDFS V5.02
|
* update source code from FastDFS V5.02
|
||||||
* add function short2buff and buff2short
|
* add function short2buff and buff2short
|
||||||
* add object memory pool (fast_mblock.h and fast_mblock.c)
|
* 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
|
* bug fixed: connection pool should NOT increase counter when connect fail
|
||||||
* logger.c do NOT call fsync after write
|
* logger.c do NOT call fsync after write
|
||||||
* sockopt.c add tcprecvdata_nb_ms to support millisecond timeout
|
* sockopt.c add tcprecvdata_nb_ms to support millisecond timeout
|
||||||
|
* change req_count from int to int64_t
|
||||||
|
|
||||||
Version 1.05 2012-07-08
|
Version 1.05 2012-07-08
|
||||||
* update source code from FastDFS V3.09
|
* update source code from FastDFS V3.09
|
||||||
|
|
|
||||||
|
|
@ -54,7 +54,7 @@ struct fast_task_info
|
||||||
int size; //alloc size
|
int size; //alloc size
|
||||||
int length; //data length
|
int length; //data length
|
||||||
int offset; //current offset
|
int offset; //current offset
|
||||||
int req_count; //request count
|
int64_t req_count; //request count
|
||||||
TaskFinishCallback finish_callback;
|
TaskFinishCallback finish_callback;
|
||||||
struct nio_thread_data *thread_data;
|
struct nio_thread_data *thread_data;
|
||||||
struct fast_task_info *next;
|
struct fast_task_info *next;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue