add ctx pointer for libserverframe nio
parent
d87d98dbe0
commit
6b528f123f
3
HISTORY
3
HISTORY
|
|
@ -1,5 +1,5 @@
|
||||||
|
|
||||||
Version 1.44 2020-03-04
|
Version 1.44 2020-03-06
|
||||||
* add test file src/tests/test_pthread_lock.c
|
* add test file src/tests/test_pthread_lock.c
|
||||||
* add uniq_skiplist.[hc]
|
* add uniq_skiplist.[hc]
|
||||||
* add function split_string_ex
|
* add function split_string_ex
|
||||||
|
|
@ -15,6 +15,7 @@ Version 1.44 2020-03-04
|
||||||
* fast_allocator.[hc]: add function fast_allocator_strdup
|
* fast_allocator.[hc]: add function fast_allocator_strdup
|
||||||
* shared_func.[hc]: add function getFileSize
|
* shared_func.[hc]: add function getFileSize
|
||||||
* char_converter.[hc]: add function fast_char_unescape
|
* char_converter.[hc]: add function fast_char_unescape
|
||||||
|
* struct fast_task_info add ctx pointer for libserverframe nio
|
||||||
|
|
||||||
Version 1.43 2019-12-25
|
Version 1.43 2019-12-25
|
||||||
* replace function call system to getExecResult,
|
* replace function call system to getExecResult,
|
||||||
|
|
|
||||||
|
|
@ -61,6 +61,7 @@ struct fast_task_info
|
||||||
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;
|
||||||
|
void *ctx; //context pointer for libserverframe nio
|
||||||
};
|
};
|
||||||
|
|
||||||
struct fast_task_queue
|
struct fast_task_queue
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue