comparison src/os/unix/ngx_process.c @ 3681:81677b7cdb2a

style fix
author Igor Sysoev <igor@sysoev.ru>
date Thu, 08 Jul 2010 13:49:21 +0000
parents ab353d7dc182
children e294f37401c0
comparison
equal deleted inserted replaced
3680:0d492ae53a57 3681:81677b7cdb2a
9 #include <ngx_event.h> 9 #include <ngx_event.h>
10 #include <ngx_channel.h> 10 #include <ngx_channel.h>
11 11
12 12
13 typedef struct { 13 typedef struct {
14 int signo; 14 int signo;
15 char *signame; 15 char *signame;
16 char *name; 16 char *name;
17 void (*handler)(int signo); 17 void (*handler)(int signo);
18 } ngx_signal_t; 18 } ngx_signal_t;
19 19
20 20
21 21
22 static void ngx_execute_proc(ngx_cycle_t *cycle, void *data); 22 static void ngx_execute_proc(ngx_cycle_t *cycle, void *data);