add field notify_next for nio notify queue
parent
c5138cc7cf
commit
6d3d082c6d
1
HISTORY
1
HISTORY
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
Version 1.66 2023-02-12
|
Version 1.66 2023-02-12
|
||||||
* struct fast_task_info add field: nio_stages.next for epoll edge trigger
|
* struct fast_task_info add field: nio_stages.next for epoll edge trigger
|
||||||
|
* struct fast_task_info add field: notify_next for nio notify queue
|
||||||
|
|
||||||
Version 1.65 2023-01-09
|
Version 1.65 2023-01-09
|
||||||
* locked_list.h: add functions locked_list_move and locked_list_move_tail
|
* locked_list.h: add functions locked_list_move and locked_list_move_tail
|
||||||
|
|
|
||||||
|
|
@ -111,7 +111,8 @@ struct fast_task_info
|
||||||
TaskFinishCallback finish_callback;
|
TaskFinishCallback finish_callback;
|
||||||
struct nio_thread_data *thread_data;
|
struct nio_thread_data *thread_data;
|
||||||
void *ctx; //context pointer for libserverframe nio
|
void *ctx; //context pointer for libserverframe nio
|
||||||
struct fast_task_info *next;
|
struct fast_task_info *next; //for free queue and deleted list
|
||||||
|
struct fast_task_info *notify_next; //for nio notify queue
|
||||||
};
|
};
|
||||||
|
|
||||||
struct fast_task_queue
|
struct fast_task_queue
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue