comparison xml/en/docs/dev/development_guide.xml @ 1907:42ed974b83a5

Fixed the duplicated reference in development guide. The ngx_handle_read_event() is mentioned twice, where ngx_handle_write_event() is supposed to be.
author Vladimir Homutov <vl@nginx.com>
date Mon, 13 Feb 2017 19:36:18 +0300
parents 862e96a39fe3
children f8659301a260
comparison
equal deleted inserted replaced
1906:e7a721d63544 1907:42ed974b83a5
2076 Level-Triggered (poll, select etc), nginx will turn the notifications into 2076 Level-Triggered (poll, select etc), nginx will turn the notifications into
2077 Edge-Triggered. 2077 Edge-Triggered.
2078 To make nginx event notifications consistent across all notifications systems 2078 To make nginx event notifications consistent across all notifications systems
2079 on different platforms, it's required, that the functions 2079 on different platforms, it's required, that the functions
2080 <literal>ngx_handle_read_event(rev, flags)</literal> and 2080 <literal>ngx_handle_read_event(rev, flags)</literal> and
2081 <literal>ngx_handle_read_event(wev,flags)</literal> are called after handling 2081 <literal>ngx_handle_write_event(wev, lowat)</literal> are called after handling
2082 an I/O socket notification or calling any I/O functions on that socket. 2082 an I/O socket notification or calling any I/O functions on that socket.
2083 Normally, these functions are called once in the end of each read or write 2083 Normally, these functions are called once in the end of each read or write
2084 event handler. 2084 event handler.
2085 </para> 2085 </para>
2086 2086