diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-02-22 15:09:59 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-02-22 15:09:59 +0300 |
commit | 029942f4eb7196c2cff0d0e26bc6ff274138f7d8 (patch) | |
tree | f4686c4d7b9cd574fe94c6f4918479a580fecf75 /src/nxt_work_queue.h | |
parent | 059a8642898a6bd4b47d13a1c1d599cd44af7e1c (diff) | |
download | unit-029942f4eb7196c2cff0d0e26bc6ff274138f7d8.tar.gz unit-029942f4eb7196c2cff0d0e26bc6ff274138f7d8.tar.bz2 |
I/O operations refactoring.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_work_queue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nxt_work_queue.h b/src/nxt_work_queue.h index 4d2422cc..8dc9c1dd 100644 --- a/src/nxt_work_queue.h +++ b/src/nxt_work_queue.h @@ -10,14 +10,14 @@ typedef struct nxt_work_s nxt_work_t; -typedef struct { +struct nxt_task_s { nxt_thread_t *thread; nxt_log_t *log; uint32_t ident; nxt_work_t *next_work; /* TODO: exception_handler, prev/next task, subtasks. */ -} nxt_task_t; +}; #define nxt_task_next_ident() \ |