nxt_main.h (258:cf535a38c52b) nxt_main.h (320:d385755599d6)
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#ifndef _NXT_LIB_H_INCLUDED_
8#define _NXT_LIB_H_INCLUDED_

--- 5 unchanged lines hidden (view full) ---

14#define NXT_VERSION "0.1"
15#define NXT_VERNUM 0x00000001
16
17
18typedef struct nxt_port_s nxt_port_t;
19typedef struct nxt_task_s nxt_task_t;
20typedef struct nxt_port_recv_msg_s nxt_port_recv_msg_t;
21typedef void (*nxt_port_handler_t)(nxt_task_t *task, nxt_port_recv_msg_t *msg);
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#ifndef _NXT_LIB_H_INCLUDED_
8#define _NXT_LIB_H_INCLUDED_

--- 5 unchanged lines hidden (view full) ---

14#define NXT_VERSION "0.1"
15#define NXT_VERNUM 0x00000001
16
17
18typedef struct nxt_port_s nxt_port_t;
19typedef struct nxt_task_s nxt_task_t;
20typedef struct nxt_port_recv_msg_s nxt_port_recv_msg_t;
21typedef void (*nxt_port_handler_t)(nxt_task_t *task, nxt_port_recv_msg_t *msg);
22typedef struct nxt_port_handlers_s nxt_port_handlers_t;
22typedef struct nxt_sig_event_s nxt_sig_event_t;
23typedef struct nxt_runtime_s nxt_runtime_t;
24
25typedef struct nxt_thread_s nxt_thread_t;
26typedef struct nxt_event_engine_s nxt_event_engine_t;
27typedef struct nxt_log_s nxt_log_t;
28typedef struct nxt_thread_pool_s nxt_thread_pool_t;
29

--- 150 unchanged lines hidden ---
23typedef struct nxt_sig_event_s nxt_sig_event_t;
24typedef struct nxt_runtime_s nxt_runtime_t;
25
26typedef struct nxt_thread_s nxt_thread_t;
27typedef struct nxt_event_engine_s nxt_event_engine_t;
28typedef struct nxt_log_s nxt_log_t;
29typedef struct nxt_thread_pool_s nxt_thread_pool_t;
30

--- 150 unchanged lines hidden ---