add buffered_file_writer.[hc]
parent
1302c5306a
commit
2992bfc4be
3
HISTORY
3
HISTORY
|
|
@ -1,8 +1,9 @@
|
|||
|
||||
Version 1.43 2019-12-24
|
||||
Version 1.43 2019-12-25
|
||||
* replace function call system to getExecResult,
|
||||
system is the deprecated function in iOS 11
|
||||
* correct function skiplist_iterator in skiplist.h
|
||||
* add buffered_file_writer.[hc]
|
||||
|
||||
Version 1.42 2019-12-03
|
||||
* add function get_gzip_command_filename
|
||||
|
|
|
|||
|
|
@ -14,7 +14,8 @@ FAST_SHARED_OBJS = hash.lo chain.lo shared_func.lo ini_file_reader.lo \
|
|||
fast_buffer.lo multi_skiplist.lo flat_skiplist.lo \
|
||||
system_info.lo fast_blocked_queue.lo id_generator.lo \
|
||||
char_converter.lo char_convert_loader.lo common_blocked_queue.lo \
|
||||
multi_socket_client.lo skiplist_set.lo json_parser.lo
|
||||
multi_socket_client.lo skiplist_set.lo json_parser.lo \
|
||||
buffered_file_writer.lo
|
||||
|
||||
FAST_STATIC_OBJS = hash.o chain.o shared_func.o ini_file_reader.o \
|
||||
logger.o sockopt.o base64.o sched_thread.o \
|
||||
|
|
@ -25,7 +26,8 @@ FAST_STATIC_OBJS = hash.o chain.o shared_func.o ini_file_reader.o \
|
|||
fast_buffer.o multi_skiplist.o flat_skiplist.o \
|
||||
system_info.o fast_blocked_queue.o id_generator.o \
|
||||
char_converter.o char_convert_loader.o common_blocked_queue.o \
|
||||
multi_socket_client.o skiplist_set.o json_parser.o
|
||||
multi_socket_client.o skiplist_set.o json_parser.o \
|
||||
buffered_file_writer.o
|
||||
|
||||
HEADER_FILES = common_define.h hash.h chain.h logger.h base64.h \
|
||||
shared_func.h pthread_func.h ini_file_reader.h _os_define.h \
|
||||
|
|
@ -38,7 +40,7 @@ HEADER_FILES = common_define.h hash.h chain.h logger.h base64.h \
|
|||
php7_ext_wrapper.h id_generator.h char_converter.h \
|
||||
char_convert_loader.h common_blocked_queue.h \
|
||||
multi_socket_client.h skiplist_set.h fc_list.h \
|
||||
json_parser.h
|
||||
json_parser.h buffered_file_writer.h
|
||||
|
||||
ALL_OBJS = $(FAST_STATIC_OBJS) $(FAST_SHARED_OBJS)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue