Configuration: reduced memory consumption.

This commit is contained in:
Valentin Bartenev
2017-07-18 18:00:15 +03:00
parent 9183ea3f71
commit f16510585f

View File

@@ -40,9 +40,9 @@ typedef struct nxt_conf_array_s nxt_conf_array_t;
typedef struct nxt_conf_object_s nxt_conf_object_t; typedef struct nxt_conf_object_s nxt_conf_object_t;
struct nxt_conf_value_s { struct nxt_aligned(8) nxt_conf_value_s {
union { union nxt_packed {
uint32_t boolean; /* 1 bit. */ uint8_t boolean; /* 1 bit. */
int64_t integer; int64_t integer;
double number; double number;
u_char str[1 + NXT_CONF_MAX_SHORT_STRING]; u_char str[1 + NXT_CONF_MAX_SHORT_STRING];
@@ -51,7 +51,7 @@ struct nxt_conf_value_s {
nxt_conf_object_t *object; nxt_conf_object_t *object;
} u; } u;
nxt_conf_value_type_t type:8; /* 3 bits. */ uint8_t type; /* 3 bits. */
}; };