diff src/event/ngx_event.h @ 467:bbd6b0b4a2b1 release-0.1.8

nginx-0.1.8-RELEASE import *) Bugfix: in the ngx_http_autoindex_module if the long file names were in the listing. *) Feature: the "^~" modifier in the location directive. *) Feature: the proxy_max_temp_file_size directive.
author Igor Sysoev <igor@sysoev.ru>
date Sat, 20 Nov 2004 19:52:20 +0000
parents a88a3e4e158f
children 2ff194b74f1e
line wrap: on
line diff
--- a/src/event/ngx_event.h
+++ b/src/event/ngx_event.h
@@ -496,7 +496,7 @@ ngx_int_t ngx_send_lowat(ngx_connection_
 
 
 
-ngx_inline static int ngx_handle_read_event(ngx_event_t *rev, u_int flags)
+static ngx_inline ngx_int_t ngx_handle_read_event(ngx_event_t *rev, u_int flags)
 {
     if (ngx_event_flags & NGX_USE_CLEAR_EVENT) {
 
@@ -540,7 +540,7 @@ ngx_inline static int ngx_handle_read_ev
 }
 
 
-ngx_inline static int ngx_handle_level_read_event(ngx_event_t *rev)
+static ngx_inline ngx_int_t ngx_handle_level_read_event(ngx_event_t *rev)
 {
     if (ngx_event_flags & NGX_USE_LEVEL_EVENT) {
         if (!rev->active && !rev->ready) {
@@ -566,7 +566,8 @@ ngx_inline static int ngx_handle_level_r
 }
 
 
-ngx_inline static int ngx_handle_write_event(ngx_event_t *wev, size_t lowat)
+static ngx_inline ngx_int_t ngx_handle_write_event(ngx_event_t *wev,
+                                                   size_t lowat)
 {
     ngx_connection_t  *c;
 
@@ -622,7 +623,7 @@ ngx_inline static int ngx_handle_write_e
 }
 
 
-ngx_inline static int ngx_handle_level_write_event(ngx_event_t *wev)
+static ngx_inline ngx_int_t ngx_handle_level_write_event(ngx_event_t *wev)
 {
     if (ngx_event_flags & NGX_USE_LEVEL_EVENT) {
         if (!wev->active && !wev->ready) {