correct spell iovent to ioevent :(

pull/37/head
YuQing 2020-09-30 18:56:48 +08:00
parent dc40977500
commit 0aab6a0531
3 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
Version 1.44 2020-09-29
Version 1.44 2020-09-30
* add test file src/tests/test_pthread_lock.c
* add uniq_skiplist.[hc]
* add function split_string_ex

View File

@ -18,7 +18,7 @@ static void deal_ioevents(IOEventPoller *ioevent)
}
else {
logDebug("file: "__FILE__", line: %d, "
"ignore iovent : %d, index: %d",
"ignore ioevent : %d, index: %d",
__LINE__, event, ioevent->iterator.index);
}
}
@ -46,7 +46,7 @@ int ioevent_remove(IOEventPoller *ioevent, void *data)
pEntry = (IOEventEntry *)IOEVENT_GET_DATA(ioevent, index);
if (pEntry != NULL && pEntry->timer.data == data) {
logDebug("file: "__FILE__", line: %d, "
"clear iovent data: %p", __LINE__, data);
"clear ioevent data: %p", __LINE__, data);
IOEVENT_CLEAR_DATA(ioevent, index);
return 0;
}

View File

@ -17,7 +17,7 @@ int ioevent_remove(IOEventPoller *ioevent, void *data);
int ioevent_set(struct fast_task_info *pTask, struct nio_thread_data *pThread,
int sock, short event, IOEventCallback callback, const int timeout);
static inline void iovent_add_to_deleted_list(struct fast_task_info *task)
static inline void ioevent_add_to_deleted_list(struct fast_task_info *task)
{
if (task->thread_data == NULL)
{
@ -35,7 +35,7 @@ static inline void iovent_add_to_deleted_list(struct fast_task_info *task)
task->thread_data->deleted_list = task;
}
static inline int iovent_notify_thread(struct nio_thread_data *thread_data)
static inline int ioevent_notify_thread(struct nio_thread_data *thread_data)
{
int64_t n;
int result;