Deleted
Added
nxt_process.h (1182:325b315e48c4) | nxt_process.h (1254:aae6699f4eee) |
---|---|
1 2/* 3 * Copyright (C) Igor Sysoev 4 * Copyright (C) NGINX, Inc. 5 */ 6 7#ifndef _NXT_PROCESS_H_INCLUDED_ 8#define _NXT_PROCESS_H_INCLUDED_ --- 100 unchanged lines hidden (view full) --- 109#define nxt_process_port_each(process, port) \ 110 nxt_queue_each(port, &process->ports, nxt_port_t, link) 111 112#define nxt_process_port_loop \ 113 nxt_queue_loop 114 115nxt_process_type_t nxt_process_type(nxt_process_t *process); 116 | 1 2/* 3 * Copyright (C) Igor Sysoev 4 * Copyright (C) NGINX, Inc. 5 */ 6 7#ifndef _NXT_PROCESS_H_INCLUDED_ 8#define _NXT_PROCESS_H_INCLUDED_ --- 100 unchanged lines hidden (view full) --- 109#define nxt_process_port_each(process, port) \ 110 nxt_queue_each(port, &process->ports, nxt_port_t, link) 111 112#define nxt_process_port_loop \ 113 nxt_queue_loop 114 115nxt_process_type_t nxt_process_type(nxt_process_t *process); 116 |
117void nxt_process_use(nxt_task_t *task, nxt_process_t *process, int i); 118 |
|
117void nxt_process_close_ports(nxt_task_t *task, nxt_process_t *process); 118 119void nxt_process_connected_port_add(nxt_process_t *process, nxt_port_t *port); 120 121void nxt_process_connected_port_remove(nxt_process_t *process, 122 nxt_port_t *port); 123 124nxt_port_t *nxt_process_connected_port_find(nxt_process_t *process, --- 42 unchanged lines hidden --- | 119void nxt_process_close_ports(nxt_task_t *task, nxt_process_t *process); 120 121void nxt_process_connected_port_add(nxt_process_t *process, nxt_port_t *port); 122 123void nxt_process_connected_port_remove(nxt_process_t *process, 124 nxt_port_t *port); 125 126nxt_port_t *nxt_process_connected_port_find(nxt_process_t *process, --- 42 unchanged lines hidden --- |