nxt_main_process.c (1681:542b5b8c0647) nxt_main_process.c (1684:a10e10f3071f)
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#include <nxt_main.h>
8#include <nxt_runtime.h>

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

261 NXT_CONF_MAP_PTR,
262 offsetof(nxt_common_app_conf_t, u.java.options),
263 },
264 {
265 nxt_string("unit_jars"),
266 NXT_CONF_MAP_CSTRZ,
267 offsetof(nxt_common_app_conf_t, u.java.unit_jars),
268 },
1
2/*
3 * Copyright (C) Igor Sysoev
4 * Copyright (C) NGINX, Inc.
5 */
6
7#include <nxt_main.h>
8#include <nxt_runtime.h>

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

261 NXT_CONF_MAP_PTR,
262 offsetof(nxt_common_app_conf_t, u.java.options),
263 },
264 {
265 nxt_string("unit_jars"),
266 NXT_CONF_MAP_CSTRZ,
267 offsetof(nxt_common_app_conf_t, u.java.unit_jars),
268 },
269 {
270 nxt_string("threads"),
271 NXT_CONF_MAP_INT32,
272 offsetof(nxt_common_app_conf_t, u.java.threads),
273 },
274 {
275 nxt_string("thread_stack_size"),
276 NXT_CONF_MAP_INT32,
277 offsetof(nxt_common_app_conf_t, u.java.thread_stack_size),
278 },
269
270};
271
272
273static nxt_conf_app_map_t nxt_app_maps[] = {
274 { nxt_nitems(nxt_external_app_conf), nxt_external_app_conf },
275 { nxt_nitems(nxt_python_app_conf), nxt_python_app_conf },
276 { nxt_nitems(nxt_php_app_conf), nxt_php_app_conf },

--- 1182 unchanged lines hidden ---
279
280};
281
282
283static nxt_conf_app_map_t nxt_app_maps[] = {
284 { nxt_nitems(nxt_external_app_conf), nxt_external_app_conf },
285 { nxt_nitems(nxt_python_app_conf), nxt_python_app_conf },
286 { nxt_nitems(nxt_php_app_conf), nxt_php_app_conf },

--- 1182 unchanged lines hidden ---