comparison src/event/modules/ngx_eventport_module.c @ 370:9a242235a80a NGINX_0_6_29

nginx 0.6.29 *) Feature: the ngx_google_perftools_module. *) Bugfix: the ngx_http_perl_module could be not built on 64-bit platforms; bug appeared in 0.6.27.
author Igor Sysoev <http://sysoev.ru>
date Tue, 18 Mar 2008 00:00:00 +0300
parents a39aab45a53f
children
comparison
equal deleted inserted replaced
369:5906b8639a07 370:9a242235a80a
37 37
38 typedef struct port_notify { 38 typedef struct port_notify {
39 int portnfy_port; /* bind request(s) to port */ 39 int portnfy_port; /* bind request(s) to port */
40 void *portnfy_user; /* user defined */ 40 void *portnfy_user; /* user defined */
41 } port_notify_t; 41 } port_notify_t;
42
43 #if (__FreeBSD_version < 700005)
44
45 typedef struct itimerspec { /* definition per POSIX.4 */
46 struct timespec it_interval;/* timer period */
47 struct timespec it_value; /* timer expiration */
48 } itimerspec_t;
49
50 #endif
42 51
43 int port_create(void) 52 int port_create(void)
44 { 53 {
45 return -1; 54 return -1;
46 } 55 }