Fix some comments

Signed-off-by: dockercui <dockercui@aliyun.com>
This commit is contained in:
dockercui 2024-04-24 11:14:47 +08:00 committed by Azat Khuzhin
parent 6074d55822
commit 147298a2d1
7 changed files with 7 additions and 7 deletions

View File

@ -914,7 +914,7 @@ event_changelist_del_(struct event_base *base, evutil_socket_t fd, short old, sh
"add, delete, dispatch" is not the same as "no-op, dispatch", we
want the no-op behavior.
If we have a no-op item, we could remove it it from the list
If we have a no-op item, we could remove it from the list
entirely, but really there's not much point: skipping the no-op
change when we do the dispatch later is far cheaper than rejuggling
the array now.

View File

@ -3004,7 +3004,7 @@ evutil_make_internal_pipe_(evutil_socket_t fd[2])
{
/*
Making the second socket nonblocking is a bit subtle, given that we
ignore any EAGAIN returns when writing to it, and you don't usally
ignore any EAGAIN returns when writing to it, and you don't usually
do that for a nonblocking socket. But if the kernel gives us EAGAIN,
then there's no need to add any more data to the buffer, since
the main thread is already either about to wake up and drain it,

View File

@ -32,7 +32,7 @@
int event_kq_notify_base_(struct event_base *base);
/** Prepare a kqueue-using event base to receive notifications via an internal
* EVFILT_USER event. Return 0 on sucess, -1 on failure.
* EVFILT_USER event. Return 0 on success, -1 on failure.
*/
int event_kq_add_notify_event_(struct event_base *base);

View File

@ -111,7 +111,7 @@ timeval_msec_diff(const struct timeval *start, const struct timeval *end)
/* Code to wrap up old legacy test cases that used setup() and cleanup().
*
* Not all of the tests designated "legacy" are ones that used setup() and
* cleanup(), of course. A test is legacy it it uses setup()/cleanup(), OR
* cleanup(), of course. A test is legacy if it uses setup()/cleanup(), OR
* if it wants to find its event base/socketpair in global variables (ugh),
* OR if it wants to communicate success/failure through test_ok.
*/

View File

@ -75,7 +75,7 @@ extern "C" {
#define inline EVENT__inline
#endif
/* Define to appropriate substitute if compiler doesnt have __func__ */
/* Define to appropriate substitute if compiler doesn't have __func__ */
#if defined(EVENT__HAVE___func__)
# ifndef __func__
# define __func__ __func__

View File

@ -271,7 +271,7 @@
The event_enable_lock_debugging() function is now spelled correctly.
You can still use the old "event_enable_lock_debuging" name, though,
so your old programs shouldnt' break.
so your old programs shouldn't break.
There's also been some work done to try to make the debugging logs
more generally useful.

View File

@ -99,7 +99,7 @@
So as you can see without openssl 16K is faster then 40K/4K, while for
openssl 40K is still faster then 16K (I guess that this is due to with
openssl SSL_read() more at at time, while with plain we have some
openssl SSL_read() more at time, while with plain we have some
allocations splits in evbuffer and maybe due to some buffer in openssl)
1.3. New backend for windows - wepoll