comparison src/os/unix/ngx_file_aio_read.c @ 4133:59b99f217c6d

Replaced "can not" with "cannot" and "could not" in a bunch of places. Fixed nearby grammar errors.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 19 Sep 2011 14:48:29 +0000
parents 37da005a5808
children d620f497c50f
comparison
equal deleted inserted replaced
4132:cdc22824e22a 4133:59b99f217c6d
21 * aio_read/aio_error() may return EINPROGRESS for just written data; 21 * aio_read/aio_error() may return EINPROGRESS for just written data;
22 * 22 *
23 * kqueue EVFILT_AIO filter is level triggered only: an event repeats 23 * kqueue EVFILT_AIO filter is level triggered only: an event repeats
24 * until aio_return() will be called; 24 * until aio_return() will be called;
25 * 25 *
26 * aio_cancel() can not cancel file AIO: it returns AIO_NOTCANCELED always. 26 * aio_cancel() cannot cancel file AIO: it returns AIO_NOTCANCELED always.
27 */ 27 */
28 28
29 29
30 extern int ngx_kqueue; 30 extern int ngx_kqueue;
31 31