comparison src/event/modules/ngx_epoll_module.c @ 4572:67653855682e

Fixed spelling in multiline C comments.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 03 Apr 2012 07:37:31 +0000
parents d620f497c50f
children 4c36e15651f7
comparison
equal deleted inserted replaced
4571:2942a827da09 4572:67653855682e
443 ngx_connection_t *c; 443 ngx_connection_t *c;
444 struct epoll_event ee; 444 struct epoll_event ee;
445 445
446 /* 446 /*
447 * when the file descriptor is closed, the epoll automatically deletes 447 * when the file descriptor is closed, the epoll automatically deletes
448 * it from its queue, so we do not need to delete explicity the event 448 * it from its queue, so we do not need to delete explicitly the event
449 * before the closing the file descriptor 449 * before the closing the file descriptor
450 */ 450 */
451 451
452 if (flags & NGX_CLOSE_EVENT) { 452 if (flags & NGX_CLOSE_EVENT) {
453 ev->active = 0; 453 ev->active = 0;
522 int op; 522 int op;
523 struct epoll_event ee; 523 struct epoll_event ee;
524 524
525 /* 525 /*
526 * when the file descriptor is closed the epoll automatically deletes 526 * when the file descriptor is closed the epoll automatically deletes
527 * it from its queue so we do not need to delete explicity the event 527 * it from its queue so we do not need to delete explicitly the event
528 * before the closing the file descriptor 528 * before the closing the file descriptor
529 */ 529 */
530 530
531 if (flags & NGX_CLOSE_EVENT) { 531 if (flags & NGX_CLOSE_EVENT) {
532 c->read->active = 0; 532 c->read->active = 0;