From 5bc011afad76fe7576ef0e0ed7ca7eb5417cf338 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 31 May 2017 15:26:45 +0300 Subject: Skeleton of router configuration and request processing. --- src/nxt_thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nxt_thread.h') diff --git a/src/nxt_thread.h b/src/nxt_thread.h index a8e04749..c1f3aaee 100644 --- a/src/nxt_thread.h +++ b/src/nxt_thread.h @@ -90,7 +90,6 @@ typedef void (*nxt_thread_start_t)(void *data); typedef struct { nxt_thread_start_t start; - void *data; nxt_event_engine_t *engine; nxt_work_t work; } nxt_thread_link_t; @@ -180,6 +179,7 @@ struct nxt_thread_s { nxt_runtime_t *runtime; nxt_event_engine_t *engine; + void *data; /* * Although pointer to a current fiber should be a property of -- cgit