diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-02-22 15:10:28 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-02-22 15:10:28 +0300 |
commit | b379dae85e6edcb4af1ac665ab66d99e63bf34f4 (patch) | |
tree | 84b1d69d355e4722ebee02748e512306913a92d7 /src/nxt_cycle.h | |
parent | 029942f4eb7196c2cff0d0e26bc6ff274138f7d8 (diff) | |
download | unit-b379dae85e6edcb4af1ac665ab66d99e63bf34f4.tar.gz unit-b379dae85e6edcb4af1ac665ab66d99e63bf34f4.tar.bz2 |
Port changes.
Diffstat (limited to 'src/nxt_cycle.h')
-rw-r--r-- | src/nxt_cycle.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nxt_cycle.h b/src/nxt_cycle.h index 6dbde173..088a91c3 100644 --- a/src/nxt_cycle.h +++ b/src/nxt_cycle.h @@ -16,7 +16,6 @@ typedef enum { } nxt_process_type_e; -typedef struct nxt_cycle_s nxt_cycle_t; typedef void (*nxt_cycle_cont_t)(nxt_task_t *task, nxt_cycle_t *cycle); @@ -47,7 +46,7 @@ struct nxt_cycle_s { nxt_cycle_cont_t continuation; #endif - nxt_array_t *processes; /* of nxt_process_port_t */ + nxt_array_t *ports; /* of nxt_port_t */ nxt_list_t *log_files; /* of nxt_file_t */ |