nginx/src/os/unix/ngx_os.h

83 lines
2.1 KiB
C
Raw Normal View History

/*
* Copyright (C) Igor Sysoev
*/
2003-11-14 00:16:33 +08:00
#ifndef _NGX_OS_H_INCLUDED_
#define _NGX_OS_H_INCLUDED_
2003-05-20 23:37:55 +08:00
#include <ngx_config.h>
#include <ngx_core.h>
2003-05-21 21:28:21 +08:00
#define NGX_IO_SENDFILE 1
2004-07-16 00:35:51 +08:00
typedef ssize_t (*ngx_recv_pt)(ngx_connection_t *c, u_char *buf, size_t size);
typedef ssize_t (*ngx_recv_chain_pt)(ngx_connection_t *c, ngx_chain_t *in);
typedef ssize_t (*ngx_send_pt)(ngx_connection_t *c, u_char *buf, size_t size);
typedef ngx_chain_t *(*ngx_send_chain_pt)(ngx_connection_t *c, ngx_chain_t *in,
off_t limit);
2003-05-20 23:37:55 +08:00
typedef struct {
2004-07-16 00:35:51 +08:00
ngx_recv_pt recv;
ngx_recv_chain_pt recv_chain;
2007-12-04 00:46:46 +08:00
ngx_recv_pt udp_recv;
2004-07-16 00:35:51 +08:00
ngx_send_pt send;
ngx_send_chain_pt send_chain;
ngx_uint_t flags;
2003-05-20 23:37:55 +08:00
} ngx_os_io_t;
2004-10-04 04:02:06 +08:00
ngx_int_t ngx_os_init(ngx_log_t *log);
void ngx_os_status(ngx_log_t *log);
ngx_int_t ngx_os_specific_init(ngx_log_t *log);
void ngx_os_specific_status(ngx_log_t *log);
2004-10-04 04:02:06 +08:00
ngx_int_t ngx_daemon(ngx_log_t *log);
2009-04-22 04:25:49 +08:00
ngx_int_t ngx_os_signal_process(ngx_cycle_t *cycle, char *sig, ngx_int_t pid);
2003-11-14 15:20:34 +08:00
2003-11-14 00:16:33 +08:00
2004-03-16 15:10:12 +08:00
ssize_t ngx_unix_recv(ngx_connection_t *c, u_char *buf, size_t size);
2003-11-14 00:16:33 +08:00
ssize_t ngx_readv_chain(ngx_connection_t *c, ngx_chain_t *entry);
2007-12-04 00:46:46 +08:00
ssize_t ngx_udp_unix_recv(ngx_connection_t *c, u_char *buf, size_t size);
ssize_t ngx_unix_send(ngx_connection_t *c, u_char *buf, size_t size);
2004-06-21 23:59:32 +08:00
ngx_chain_t *ngx_writev_chain(ngx_connection_t *c, ngx_chain_t *in,
off_t limit);
2003-07-11 00:26:57 +08:00
#if (NGX_HAVE_AIO)
ssize_t ngx_aio_read(ngx_connection_t *c, u_char *buf, size_t size);
ssize_t ngx_aio_read_chain(ngx_connection_t *c, ngx_chain_t *cl);
ssize_t ngx_aio_write(ngx_connection_t *c, u_char *buf, size_t size);
ngx_chain_t *ngx_aio_write_chain(ngx_connection_t *c, ngx_chain_t *in,
off_t limit);
#endif
2003-05-21 21:28:21 +08:00
2003-05-20 23:37:55 +08:00
extern ngx_os_io_t ngx_os_io;
2004-10-04 04:02:06 +08:00
extern ngx_int_t ngx_ncpu;
extern ngx_int_t ngx_max_sockets;
extern ngx_uint_t ngx_inherited_nonblocking;
extern ngx_uint_t ngx_tcp_nodelay_and_tcp_nopush;
2003-05-20 23:37:55 +08:00
#if (NGX_FREEBSD)
2003-11-14 00:16:33 +08:00
#include <ngx_freebsd.h>
#elif (NGX_LINUX)
2003-11-26 23:42:18 +08:00
#include <ngx_linux.h>
#elif (NGX_SOLARIS)
2003-11-28 03:01:37 +08:00
#include <ngx_solaris.h>
#elif (NGX_DARWIN)
#include <ngx_darwin.h>
2003-11-28 03:01:37 +08:00
#endif
2003-11-14 00:16:33 +08:00
#endif /* _NGX_OS_H_INCLUDED_ */