From 140f5e4cc0416b9674edca7f4c901b1f58fc1415 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=BF=97=E4=BA=AE?= Date: Tue, 16 Oct 2018 20:01:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=AD=A3=E9=94=99=E5=88=AB=E5=AD=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/c11/p12_understanding_event_driven_io.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/c11/p12_understanding_event_driven_io.rst b/source/c11/p12_understanding_event_driven_io.rst index 97b0ba0..6819924 100644 --- a/source/c11/p12_understanding_event_driven_io.rst +++ b/source/c11/p12_understanding_event_driven_io.rst @@ -55,7 +55,7 @@ h.handle_send() 事件循环的关键部分是 ``select()`` 调用,它会不断轮询文件描述符从而激活它。 -在调用 ``select()`` 之前,时间循环会询问所有的处理器来决定哪一个想接受或发生。 +在调用 ``select()`` 之前,事件循环会询问所有的处理器来决定哪一个想接受或发生。 然后它将结果列表提供给 ``select()`` 。然后 ``select()`` 返回准备接受或发送的对象组成的列表。 然后相应的 ``handle_receive()`` 或 ``handle_send()`` 方法被触发。