nginx/src/os/unix/ngx_linux.h

21 lines
389 B
C
Raw Normal View History

/*
* Copyright (C) Igor Sysoev
*/
2003-11-26 04:44:56 +08:00
#ifndef _NGX_LINUX_H_INCLUDED_
#define _NGX_LINUX_H_INCLUDED_
ngx_int_t ngx_init_setproctitle(ngx_log_t *log);
void ngx_setproctitle(char *title);
2004-06-21 23:59:32 +08:00
ngx_chain_t *ngx_linux_sendfile_chain(ngx_connection_t *c, ngx_chain_t *in,
off_t limit);
2003-11-26 04:44:56 +08:00
2004-07-15 00:01:42 +08:00
extern int ngx_linux_rtsig_max;
2003-11-26 04:44:56 +08:00
#endif /* _NGX_LINUX_H_INCLUDED_ */